字符逆序 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h>#define N 105 int main(){ char s[N],a[N],j=0; in…… 题解列表 2018年11月30日 0 点赞 0 评论 315 浏览 评分:0.0
字符串逆序 摘要:str=input() print(str[-1::-1])解题思路:注意事项:参考代码:str=input()print(str[-1::-1])…… 题解列表 2022年03月28日 0 点赞 0 评论 153 浏览 评分:0.0
字符逆序-题解(C语言代码) 摘要: 代码: #include #include int main() { char w[100]; char w1[100]; …… 题解列表 2020年03月16日 0 点赞 0 评论 345 浏览 评分:0.0
!!!???!!!疑惑 为什么不对 摘要:我自己跑出来的代码功能是没问题的 但是提交始终给我报错误0,不知道为什么 ```cpp #include using namespace std; int main() { …… 题解列表 2021年03月27日 0 点赞 1 评论 532 浏览 评分:0.0
1093 字符逆序 字符串 摘要:#include<stdio.h>#include<string.h> int main(){ char str[100]; gets(str); int a,i,temp; a=strlen(str…… 题解列表 2023年02月02日 0 点赞 0 评论 79 浏览 评分:0.0
字符逆序-题解(C++代码) 摘要:```cpp #include using namespace std; #include int main() { string s; getline(cin,s);…… 题解列表 2020年04月30日 0 点赞 0 评论 319 浏览 评分:0.0
字符逆序(C语言代码) 摘要:解题思路:先逆序在输出。注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100]; char temp;…… 题解列表 2022年04月13日 0 点赞 0 评论 194 浏览 评分:0.0
字符逆序-题解(C++代码) 摘要:## algorithm的reverse函数 # 示例代码 ``` #include #include using namespace std; int main() { st…… 题解列表 2020年05月19日 0 点赞 0 评论 282 浏览 评分:0.0
字符逆序-题解(Java代码) 摘要:```java import java.util.Scanner; /** * https://www.dotcpp.com/oj/problem1093.html * @author…… 题解列表 2019年07月31日 0 点赞 0 评论 553 浏览 评分:0.0
字符逆序-题解(Java代码) 只需一句 摘要:使用StringBuffer类中的reverse函数,直接输出倒置的字符串 ```java System.out.println(new StringBuffer(input.nextLine…… 题解列表 2019年12月07日 0 点赞 0 评论 492 浏览 评分:0.0