VIRTUALS

the virtual labs for the virtuals

0%

HJ12. 字符串反转

摘要:
简单字符串反转,有大概一万种做法。

题目

描述
接受一个只包含小写字母的字符串,然后输出该字符串反转后的字符串。(字符串长度不超过 $1000$)

输入描述:
输入一行,为一个只包含小写字母的字符串。

输出描述:
输出该字符串反转后的字符串。

示例1

输入:
abcd

输出:
dcba

reverse

这题主要考察字符串反转,方法有一万种。选一种自己喜欢的就好。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
* author: etoa
* 2021-08-18 18:22:41
*/
#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
/*
* author: etoa
* 2021-08-18 18:28:10
*/
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());
}
}

原题链接: HJ12. 字符串反转