填空题
以下程序运行时从键盘输入:How are you <回车>,则输出结果为______。
#include<stdio.h>
main()
char a[20]="How are you",b[20];
scanf("%s", b); printf("%s %s\n", a, b);
【参考答案】
How are youHow
点击查看答案&解析
<上一题
目录
下一题>
热门
试题
填空题
以下程序运行后的输出结果是______。 #include<stdio.h> main() int a=1, b=7; do b=b 2; a+=b; while(b>1); printf( %d n , a);
点击查看答案&解析
填空题
若有语句double x=17; int y;,当执行y=(int)(x 5)%2;之后y的值为______。
点击查看答案&解析
相关试题
以下程序运行后的输出结果是______。...
以下程序运行后的输出结果是______。...
以下程序运行后的输出结果是______。...
以下程序运行后的输出结果是______。...
设有定义: struct person int ID; c...