当从键盘输入-1 0,则以下程序的运行结果是 。 #include main()..."m=%d n=%d ",m,n); }
举一反三
- 以下程序的运行结果是______。#include"stdio.h"main()...d,%d\n",m,n,*p,*q);}
- 下列程序的运行结果是______ 。#include void main() { int n=0,m=1,x=2; if(!n) x-=1; if(m) x-=2; if(x) x-=3; printf("%d\n",x); }
- 以下程序的运行结果为().main(){intm,n;for(m=0,n=10;m
- 以下程序的运行结果是_________。#include "stdio.h"void main(){int m=1,s=1;do{++m;if(m%3!=0)continue;elses=s*m;printf("%d\n",s);}while(m<10);}
- 读程序从键盘输入 1902 , 则程序的输出结果是 :( ) int fun(int n) { int m=0,c; while(n!=0) { c=n%10; m=m*10+c; n=n/10; } return(m); } int main() { int m; scanf("%d",&m); printf("%d\n",fun(m)); return 0; }