填空题
以下程序运行时,输出到屏幕的结果是
1
(8)
2
。 #include
void fun (int n) { int t; putchar (n%10+'0'); t=n/100; if(t!=0) fun (t); } int main
3
{ int m=12345; fun (m); printf("/n"); return 0; }
1、
【正确答案】
1、531
【答案解析】
提交答案
关闭