摘要:
简单字符串反转,有大概一万种做法。
题目
描述
接受一个只包含小写字母的字符串,然后输出该字符串反转后的字符串。(字符串长度不超过 $1000$)
输入描述:
输入一行,为一个只包含小写字母的字符串。
输出描述:
输出该字符串反转后的字符串。
示例1
输入:
abcd
输出:
dcba
reverse
这题主要考察字符串反转,方法有一万种。选一种自己喜欢的就好。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
#include <bits/stdc++.h>
using namespace std;
int main() { string s; cin >> s; reverse(s.begin(), s.end()); cout << s << endl; return 0; }
|
1 2 3 4 5 6 7 8 9 10 11 12 13
|
import java.util.*;
public class Main { public static void main(String[] args) { Scanner in = new Scanner(System.in); String s = in.next(); System.out.println(new StringBuilder(s).reverse().toString()); } }
|