下面程序的输出结果是( )。main(){ int a,b;a=4;b=5;if(a
查看答案
以下程序段的输出结果是( )。#includevoid main(){int i,m=0;for(i=0;i<=10;i+=2) m++;printf("%d\n",m);}
A. 6
B. 15
C. 20
D. 25
执行下列程序后, 变量a的值应为( )。float f1(float x) {return x+1.3;} void main( ) { float a; a=f1(2.4); printf(“%f\n”,a); }
A. 3.700000
B. 3
C. 4
D. 不确定
若a是int型变量,则表达式(a=4*5,a*2),a+6的值为____。
若有定义:int a=7;float x=2.5,y=4.7;则表达式x+a%3*(int)(x+y)%2/4的值是____。