2925 ******自己复习用********** 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>#include <stdbool.h>int main() { int n = 0; …… 题解列表 2024年12月03日 0 点赞 0 评论 51 浏览 评分:9.9
2925: 单词排序 摘要:解题思路:注意事项:参考代码://字符串的排序(冒泡排序) #include <stdio.h> #include <string.h> int main() { int n = 0…… 题解列表 2022年10月28日 0 点赞 2 评论 377 浏览 评分:8.7
单词排序(%s是不读取空格的,遇到空格会停止读取,可以整个二维数组存储单词) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { char a[200][100];//按题目最多100个单词…… 题解列表 2023年10月25日 1 点赞 0 评论 157 浏览 评分:8.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h> int main() { char str[5000], str1[105][55]; …… 题解列表 2023年06月20日 0 点赞 0 评论 124 浏览 评分:6.0
编写删除相同的单词函数+冒泡法排序函数 摘要:解题思路:先删除相同字母,再排序,最后进行输出注意事项:参考代码:#include<stdio.h>#include<string.h>//删除重复的单词int dele(char str[][55…… 题解列表 2023年01月16日 0 点赞 0 评论 143 浏览 评分:0.0