#362: 疑惑中 請大家給予我幫助@@


a222242 (無)

學校 : 國立彰化高級中學
編號 : 2091
來源 : [125.224.110.46]
最後登入時間 :
2008-09-11 21:50:26
a038. 數字翻轉 | From: [163.23.148.202] | 發表日期 : 2008-07-08 12:06

#include<iostream>
using namespace std;
int main()
{
    int a;
    string b;
    while(cin>>b)
    {
    string c("");
       for(a=b.length()-1;a>=0;a--)
       {
          c.append(b,a,1);
       }
       cout<<c<<endl;
    }
    system("pause");
    return 0;
ZeroJudge Forum