#27586: _CPP


11030067@mail.hpsh.tp.edu.tw (和平110級鄧雨珊)

學校 : 臺北市立和平高級中學
編號 : 163096
來源 : [61.64.210.174]
最後登入時間 :
2022-10-23 16:54:59
a038. 數字翻轉 | From: [27.105.52.161] | 發表日期 : 2021-10-17 19:26

 
int main(){
int n, r;
bool head;
while (cin >> n){
if (n==0)
cout << 0 <<endl;
head=true;
while (n>0){
r=n%10;
n=n/10;
if (head && r==0)
continue;
cout << r;
head=false;
}
cout <<endl;
}
return 0;
}
 
ZeroJudge Forum