第1关:写出程序的运行结果
1、运行下面程序,在结果框内写出输出结果:
#include
int main()
{
int m=7,n=4;
float a=38.4,b=6.4,x;
x=m/2+n*a/b+1/2;
printf(“%f\n”,x);
return 0;
}
开始你的任务吧,祝你成功!

第2关:写出程序运行结果
本关任务:
运行下面程序,在结果框内写出输出结果:
#include
int main()
{
int a=10,x=5,y=6,b;
a+=a*=6;
x=y++;
y=++x;
b=(x++)+y;
printf(“%d,%d,%d,%d”, a, b,x