| Time Limit: 2000MS | Memory Limit: 65536KB | 64bit IO Format: %lld & %llu |
Description
Input Specification
The input contains several test cases. The first line contains an integer specifying the number of test cases. Each test case consists of a single line of text which contains at most 70 characters. However, the newline character at the end of each line is not considered to be part of the line.
Output Specification
For each test case, print a line containing the characters of the input line in reverse order.
Sample Input
3
Frankly, I don't think we'll make much
money out of this scheme.
madam I'm adam
Sample Output
hcum ekam ll'ew kniht t'nod I ,ylknarF
.emehcs siht fo tuo yenom
mada m'I madam
Source
#include <stdlib.h>
#include <iostream>
#include <string>
using namespace std;
int main()
{
int ncases;
string s;
int i;
cin >> ncases;
getchar();
while( ncases-- )
{
getline(cin,s);
for(i=s.size()-1; i>=0; i--)
cout << s[i];
cout << endl;
}
return 0;
}
本文介绍了一个简单的编程问题——如何将输入的字符串进行逆序输出。该任务通常作为编程入门的基础练习,有助于理解字符串操作的基本概念。
505

被折叠的 条评论
为什么被折叠?



