主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
ccccccyes
2024年8月21日 19:33
字符串翻转 题解:
P1006
回复 0
|
赞 0
|
浏览 320
#include <iostream> #include <algorithm> //reverse是algorithm中的 using namespace std; int main(){ string str; //string类详解 cin>>str; reverse(str.begin(),str.end());  ...
勋谦
2024年6月30日 15:21
字符串翻转 题解:getline
P1006
回复 1
|
赞 1
|
浏览 609
#include <iostream> using namespace std; int main(){ string s; getline(cin,s); for(int i = s.size() - 1;i >= 0;i --){ cout << s[i]; } return 0; }
我与代码的故事
2024年4月19日 23:51
字符串翻转 题解:
P1006
回复 0
|
赞 1
|
浏览 505
#include<bits/stdc++.h> using namespace std; int main() { string s; getline(cin, s); reverse(s.begin(), s.end()); cout << s; return 0; }
kar
2024年3月26日 20:12
字符串翻转 题解:C++
P1006
回复 0
|
赞 2
|
浏览 785
int main(){ string str; cin>>str; reverse(str.begin(),str.end()); cout<<str<<endl; return 0; }
渐鸿于陆
2024年3月16日 21:17
字符串翻转 题解:
P1006
回复 0
|
赞 0
|
浏览 1.0k
#include"stdio.h" #include"stdlib.h" #include"string.h" int main(void){ char s[105] = {0}; gets(s); int len = strlen(s); for(int i = len-1;i>=0;i--){  ...
928上岸梦校!
2023年8月6日 12:27
STL容器的逆序输出
P1006
回复 3
|
赞 2
|
浏览 1.3k
C++参考代码如下: #include <bits/stdc++.h> using namespace std; int main() { string s; cin >> s; for (auto it = s.rbegin(); it != s.rend(); it++) { cout << *it; } return 0; }
FCC
2024年3月14日 21:29
字符串翻转 题解:reverse()函数
P1006
回复 0
|
赞 0
|
浏览 559
#include <bits/stdc++.h> using namespace std; int main(){ string s; cin >> s; reverse( s.begin(), s.end() ); //字符串迭代器 cout << s; return 0; }
小酒
2024年3月11日 15:50
字符串翻转 题解:
P1006
回复 0
|
赞 0
|
浏览 704
1006解题思路 #include <bits/stdc++.h> using namespace std; int main() { char a[100]; char k; int i=0; gets(a); while(!a[i]==0) { i...
williams
2024年3月8日 16:50
字符串翻转 题解:
P1006
回复 0
|
赞 0
|
浏览 664
#include <stdio.h> #include <string.h> int main(void){ char s[100]; gets(s); for(int i=strlen(s)-1;i>=0;i--) printf("%c",s[i]); return 0; }
lingdongyang
2024年3月7日 10:18
字符串翻转 题解:C
P1006
回复 0
|
赞 0
|
浏览 716
#include<stdio.h> #include<string.h> #include<stdlib.h> int main() { char s[105]; scanf("%s", &s); int len = strlen(s); for (int i = len - 1; i >= 0; i--) { printf("%c", s[i]); } return 0; }
1
2
3
题目
字符串翻转
题解数量
28
发布题解
热门题解
1
1006 - 字符串翻转(C语言)
2
字符串翻转 题解:
3
STL容器的逆序输出
4
递归实现字符串反转(c语言)
5
1006 字符串翻转
6
c++实现
7
字符串翻转 题解:C++
8
他让你怎么做,你就怎么做
9
字符串反转
10
P1006 - 字符串翻转 - C