填空题
有以下程序:
#include <stdio.h>
main()
( int x,y;
scanf("%02d%1d", &x, &y); printf("%d\n", x+y);
程序运行时输入:1234567,程序的运行结果是______。
【参考答案】
O
点击查看答案
<上一题
目录
下一题>
热门
试题
填空题
有以下程序: #include <stdio.h> int a=5; void fun(int b) int a=10; a+=b;printf( %d ,a); main() int c=20; fun(c); a+=c; printf( %d n ,a); 程序运行后的输出结果是______。
点击查看答案
填空题
在一个容量为25的循环队列中,若头指针front=16,尾指针rear=9,则该循环队列中共有______个元素。
点击查看答案
相关试题
m++
func()
以下程序的输出结果是______。 #in...
下列程序运行时,若输入labcedf2d<回车>...
有以下程序: #include <stdio.h> ...