若有以下程序
#include
main()
{ char a[20], b[ ]="The sky is blue."; int i;
for (i=0; i<7; i++) scanf("%c", &b[i]);
gets(a); printf("%s%s\n", a,b);
}
执行时若输入: (其中表示回车符)
Fig flower is red.
则输出结果是
- A.wer is red.Fig flo is blue.
- B.wer is red.Fig flo
- C.wer is red.The sky is blue.
- D.Fig flower is red.The sky is blue.
热度🔥1,508
解析:打开微信小程序查看本题解析
有以下程序
#include
void fun( int a, int b, int c )
{ a=b; b=c; c=a; }
main()
{ int a=10 , b=20, c=30;
fun( a, b, c );
printf("%d,%d,%d\n",c,b,a);
}
程序运行后的输出结果是
下列关于漏洞扫描技术和工具的描述中,正确的是()。
某公司需要在Excel中统计各类商品的全年销量冠军,最优的操作方法是( )。