feng


私信TA

用户名:fengvm

访问量:1444

签 名:

fengvm

等  级
排  名 12793
经  验 957
参赛次数 3
文章发表 3
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

解题思路:

读一整行字符串然后逆置
注意事项:

参考代码:

#include<iostream>
#include<string>
using namespace std;
int main(){
	string str;
	getline(cin,str);
	int i=0;
	int j=str.length()-1;
	while(i<=j){
		char ch = str[i];
		str[i]=str[j];
		str[j]=ch;
		i++;
		j--;
	}
	cout<<str<<endl;
	return 0;
}


 

0.0分

0 人评分

  评论区

  • «
  • »