下列程序段的输出结果是【15】 。
cout<
第1题:
下列程序段的输出结果是( )。
A.passwarn
B.passerror
C.goodpasswarn
D.pass
第2题:
下列程序段的输出结果是_____。
cout < < fixed < < 509.123456789 < < endl;
第3题:
94、下列程序段的输出结果是__ int a=3,b=15; do { a+=b;b=b/2; }while(b>1); printf("%d\n",a);
第4题:
下列程序段的输出结果是( )。 ACCEPT TO A IF A=[123] S=0 ENDIF S=1 ?S
A.0
B.1
C.123
D.由A的值决定
第5题:
下列程序段的输出结果是__ int a=3,b=15; do { a+=b;b=b/2; }while(b>1); printf("%dn",a);