将一个字符串str的内容颠倒过来,并输出。 数据范围:
输入描述:
输入一个字符串,可以有空格
输出描述:
输出逆序的字符串
示例1
输入
I am a student
输出
tneduts a ma I
示例2
输入
nowcoder
输出
redocwon
加载中...
import java.io.IOException; public class Main { public static void main(String[] args) throws IOException { } }
#include
#include
using namespace std; int main(){ }
I am a student
tneduts a ma I
nowcoder
redocwon