下列程序的功能是对a+b的值进行四舍五入取整后输出。

程序改错(标有的程序行有错,下同)

(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();
}

© 版权声明
THE END
喜欢就支持以下吧
点赞0 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容