[填空題] 以下程序的功能是:將輸入的正整數(shù)按逆序輸出。例如:若輸入135則輸出531。請(qǐng)?zhí)羁铡? #include <stdio.h> main()
2021-07-20
[填空題] 以下程序的功能是:將輸入的正整數(shù)按逆序輸出。例如:若輸入135則輸出531。請(qǐng)?zhí)羁铡?/p>
#include <stdio.h>
main()
int n,s,
printf("Enter a number:"); scanf("%d",&n);
printf("Output: ");
do
s=______; printf("%d",s); n/=10;
while(n!=0);
printf("");
正確答案:n%10
詞條內(nèi)容僅供參考,如果您需要解決具體問(wèn)題
(尤其在法律、醫(yī)學(xué)等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。