编写题解 1044: [编程入门]三个字符串的排序 摘要:```c #include #include #include #include int main() { char a[3][128];//每一行存一串字符串 cha…… 题解列表 2023年03月08日 0 点赞 0 评论 153 浏览 评分:0.0
044: [编程入门]三个字符串的排序——极限strcmp 摘要:解题思路:注意事项:参考代码:#include<string.h>int main(){ char str1[100],str2[100],str3[100]; char m1[100],m2[100…… 题解列表 2023年03月06日 0 点赞 0 评论 77 浏览 评分:9.9
[编程入门]三个字符串的排序-JAVA题解 摘要: import java.util.Scanner; public class Main { public static void main(Str…… 题解列表 2023年03月05日 0 点赞 0 评论 133 浏览 评分:0.0
三个字符串排序 摘要:解题思路:使用strcpy()函数直接解决,strcpy()是直接覆盖拷贝的意思,例如:strcpy(a,b)是指将b的值覆盖到a上,是字符串注意事项:参考代码:#include<stdio.h>#i…… 题解列表 2023年03月03日 0 点赞 1 评论 65 浏览 评分:9.9
直接当成数字来比较都可行 摘要:```cpp #include using namespace std; int main() { string a,b,c; cin>>a>>b>>c; if(ac) cout…… 题解列表 2023年03月02日 0 点赞 0 评论 122 浏览 评分:0.0
使用选择法排序字符串 摘要:```c #include #include int main() { char a[3][100]; for(int i=0;i…… 题解列表 2023年02月02日 0 点赞 0 评论 139 浏览 评分:0.0
选择排序思想解题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<windows.h>int main(){ int l,m,min; …… 题解列表 2023年01月12日 0 点赞 0 评论 85 浏览 评分:0.0
三个字符串的排序 摘要:参考代码 #include #include #include #define n 100 int main(void) { c…… 题解列表 2023年01月08日 0 点赞 0 评论 109 浏览 评分:0.0
[编程入门]三个字符串的排序 摘要:解题思路:笨方法,和三个数排序地思路差不多。注意事项:参考代码:#include <stdio.h>#include <string.h>int main(){ char t[100],a[100],…… 题解列表 2023年01月08日 0 点赞 0 评论 90 浏览 评分:9.9
通过比较和复制字符串解决(C语言) 摘要:解题思路:通过strcmp()函数确认字符串大小(该函数大于返回1,等于返回0,小于返回-1),再通过strcpy()复制并交换字符串,gets()输入字符串,puts()输出字符串注意事项:字符串不…… 题解列表 2023年01月03日 0 点赞 0 评论 68 浏览 评分:0.0