这道题有两种思路
思路1:
输入一个字符串
倒序后输出
这种方法用于长训班的reverse函数
长训以下不建议使用(因为你不可能知道)。
思路二:
用gets()函数输入一个字符数组
然后用for循环翻转
最后输出数组或直接倒序输出。
这种方法初级以上都可用。
思路一的代码:
#include <bits/stdc++.h>
using namespace std;
int main()
{
string s;
getline(cin,s);
for(int i=s.length()-1;i>=0;--i)
cout<<s[i];
return 0;
}
思路二的代码:
#include <bits/stdc++.h>
using namespace std;
int main()
{
string s;
cin>>s;
char a[1005]
for(int i=0;i<s.size();++i)
{
a[i]=s.substr(i,1);
}
for(int i=n-1;i>=0;--i)
{
cout<<a[i];
}
return 0;
}