程序改错(标有★的程序行有错,下同)
(1)下列程序的功能是对a+b的值进行四舍五入取整后输出。
#include < stdio.h >
void main( )
{float a,b;
int x;
a=3.1;
b=4.5;
x=a+b;
printf(“%f”,x);★
}
(1)
#include “stdio.h”
#include “conio.h”
void main()
{ float a,b,x;
a=3.1;
b=4.5;
x=a+b;
printf(“%.0f”,x);
getch();
}
© 版权声明
部分文章来自网络,只做学习和交流使用,著作权归原作者所有,遵循 CC 4.0 BY-SA 版权协议。
THE END
暂无评论内容