超级简洁易懂c语言代码 摘要:解题思路:注意事项:一定不要忘记初始化数组,试了好多次都是错的,最后把数组初始化一下就对了!参考代码:#include #include int main () { char sz1[25…… 题解列表 2022年05月13日 0 点赞 0 评论 360 浏览 评分:9.9
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) { Sc…… 题解列表 2024年01月30日 0 点赞 0 评论 453 浏览 评分:9.9
字符串的逆置 摘要: 用两个数组实现字符串的逆置 #include #include int main() { char s[256],b[256]; …… 题解列表 2024年03月21日 0 点赞 0 评论 213 浏览 评分:9.9
看不懂直接喷我 摘要:解题思路:注意事项: 看我评论!!!!!参考代码: #include #include int main() { int i; char a[300]; gets (a); int num=strle…… 题解列表 2024年11月11日 0 点赞 1 评论 312 浏览 评分:9.9
字符串问题-题解(C语言代码) 摘要:参考代码:#include<iostream> using namespace std; int main(){ string str; cin >> str; fo…… 题解列表 2021年02月02日 0 点赞 0 评论 592 浏览 评分:9.9
字符串问题 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2018年04月15日 0 点赞 0 评论 883 浏览 评分:9.9
【sor一行流】1206: 字符串问题---python一行解决【python一行流】【一行流】 摘要:解题思路:python处理字符串特别简单,这没有啥显摆的,python就这玩意,能用一行解决的,决不写第二行。注意事项:看代码吧。参考代码:print(input()[::-1])…… 题解列表 2021年11月20日 0 点赞 0 评论 424 浏览 评分:9.9
字符串问题-题解(C语言代码)值得参考 摘要:###### 参考代码: #include #include int main() { char a[200],t; gets(a); …… 题解列表 2019年12月01日 0 点赞 1 评论 880 浏览 评分:9.6
字符串问题 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[300]; int i; while(g…… 题解列表 2017年09月08日 2 点赞 0 评论 1886 浏览 评分:9.5
字符串问题-题解(C语言代码) 摘要:本题比较简单,大致思路如下: 读入字符串,遍历倒序输出。 我觉得注意的就是方法的选择,以及相应知识点的运用。 第一种方法是最简单的直接倒序输出: ```c #include #includ…… 题解列表 2019年06月22日 1 点赞 0 评论 692 浏览 评分:8.0