文章

105

粉丝

69

获赞

117

访问

56.9k

头像
反序输出 (C++)题解:
P1155 清华大学上机题
发布于2024年6月11日 22:13
阅读数 356

#include<bits/stdc++.h>
using namespace std;

string str;

int main()
{
	while(cin >> str)
	{
	    reverse(str.begin(), str.end());
	    
	    cout << str << endl;
	}
	return 0;	
}

 

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发