字符逆序cin.get(str,100);
摘要:#include#includeusing namespace std;int main(){ char str[100]; cin.get(str,100);//gets(str); ……
!!!???!!!疑惑 为什么不对
摘要:我自己跑出来的代码功能是没问题的 但是提交始终给我报错误0,不知道为什么
```cpp
#include
using namespace std;
int main()
{
……
编写题解 1093: 字符逆序
摘要:参考代码:my_str = list(map(str, input()))for i in my_str[::-1]: print(i, end="") ……
python 超简单写法
摘要:解题思路:注意事项:参考代码x = input()list = [x]if len(x) < 100: for i in list: print(i[::-1])……
1093: 字符逆序(C语言)
摘要:#字符逆序
##代码
```c
#include
#include
#include
#include
int main(){
char s[1000],p[1000];
get……
题解 1093: 字符逆序 使用指针解决
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char str[100]={0}; gets(str); ……
1093: 字符逆序-题解(python代码)
摘要:解题思路:切片的使用注意事项:参考代码:a = input()for i in a[::-1]: print(i,end='')……