单项选择题

以下程序的输出结果是54321,请在【1】处填空。 #include "stdio.h"main(){ int n=12345, d;while(n!=0) { d=【1】; printf("%d",d); n=n/10; }} A. d*10 B. d/10 C. d%10 D. n%10

微信扫码免费搜题