写出下面程序的运行结果: #include void main( ) { int a=1,b=0; printf("%d,",b=a+b); printf("%d",a=2*b); }
举一反三
- 有以下程序:#include main(){ int a=1,b=0; printf(%d,,b=a+b); printf(%d ,a=2*b);}
- 写出下面程序的运行结果是 #include <stdio.h> void main() { int a,b,c=9; a=3,b=4; c%= a+b; printf(“%d”,c) }
- 写出下面程序的运行结果是#include <stdio。h>void main( ){ int a,b,c=9; a=3,b=4; c%= a+b; printf(“%d”,c)}。 A: 3 B: 2 C: 1 D: 4
- 请写出以下程序的运行结果#include int main() { printf(Hello World! ); return 0; }
- 写出下面程序的运行结果: main() { int a,b,c=9; a=3,b=4; c%= a+b; printf(“%d”,c) } A: 3 B: 2 C: 1 D: 4