填空题 以下程序的输出结果是______。
#include
main()
int n=12345, d;
while(n!=0) d=n%10; printf("%d",d); n/=10;


  • 1、
【正确答案】 1、54321    
【答案解析】