1. 程式人生 > >程式設計練習——數字顛倒

程式設計練習——數字顛倒

#include <iostream>
using namespace std;
int main(){
    int n;
    while(cin >> n){              //while(cin>>num)在這裡沒問題
        string ans;
        do{
            ans += n%10+'0';
            n /= 10;
        }while(n);
        cout << ans;
    }
    return 0;
}

Python: