问题详情
以下程序的输出结果为
main()
{
int m=7,n=4;
float a=38.4,b=6.4,x;
x=m/2+n*a/b+1/2;
cout<<x<<endl;
}
A.27.000000
B.27.500000
C.28.000000
D.28.500000