123456789101112131415161718
int _tmain(int argc, _TCHAR* argv[]) { string input; cout<<"write something"<<endl; getline(cin,input); string test; int len = input.length(); while(len!=0) { len--; test=input[len]; } cout<<test; cin.get(); return 0; }
test=input[len];
test = test + input[len];
test += input[len];
test.append(1, input[len]);