题目描述
输入任意4个字符(如:abcd), 并按反序输出(如:dcba)
输入描述:
题目可能包含多组用例,每组用例占一行,包含4个任意的字符。
输出描述:
对于每组输入,请输出一行反序后的字符串。 具体可见样例。
示例1
输入
Upin cvYj WJpw cXOA
输出
nipU jYvc wpJW AOXc 代码:
#include <iostream> #include <string> using namespace std; int main() { string s; cin >> s; for (int i = s.length()-1; i >=0; i--) { cout << s[i]; } cout << endl; system("pause"); return 0; }
原文地址:https://www.cnblogs.com/hequnwang/p/10472163.html
时间: 2024-10-12 08:41:06