编写题解 1044: [编程入门]三个字符串的排序 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <stdlib.h> #include <string.h> int compare(const voi…… 题解列表 2023年04月07日 0 点赞 0 评论 85 浏览 评分:0.0
1044:三个字符串的排序 摘要:1. 用一个二维数组存储3个字符串 2. 用一个字符指针数组分别存储3个字符串的地址 3. 采取选择排序法和`strcmp()`库函数进行具体的比较和排序 4. 对具体的参数可以采用宏定义以实…… 题解列表 2023年04月19日 0 点赞 1 评论 112 浏览 评分:9.9
1044题 : 三个字符串的排序 摘要:# 自己写的代码(没有写完,代码不好) ```c #include #include int main() { char a[20],b[20],c[20]; get…… 题解列表 2023年07月05日 0 点赞 0 评论 77 浏览 评分:0.0
三目运算符运用 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main() { char a[99],b[99],c[99];//输入字符串 …… 题解列表 2023年09月19日 0 点赞 0 评论 86 浏览 评分:0.0
[编程入门]三个字符串的排序(用结构体来做) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> struct string { char a[100]; }; int ma…… 题解列表 2023年10月12日 0 点赞 0 评论 44 浏览 评分:9.9
[编程入门]三个字符串的排序 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[100]; char str0[100]; char …… 题解列表 2023年10月24日 0 点赞 0 评论 74 浏览 评分:9.9
!三个字符串的排序 摘要:#include <stdio.h>#include <string.h> int main(){ char x[100];char y[100];char z[100]; char c1[100]…… 题解列表 2023年10月31日 0 点赞 0 评论 103 浏览 评分:9.9
三个字符串的排序 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <math.h> #include <string.h> int main() { // 声…… 题解列表 2023年11月15日 0 点赞 0 评论 58 浏览 评分:0.0
代码的尽头是优雅 摘要:解题思路: 定义一个容器存储三个字符串注意事项:多利用工具类进行优化算法参考代码:import java.util.*;public class Main { static Scanner sc…… 题解列表 2023年11月16日 1 点赞 0 评论 175 浏览 评分:9.9
C语言:用指针解 摘要:解题思路:因为字符串无法直接赋值,所以利用指针切换地址即可参考代码:#include <stdio.h>#include <string.h>int main() { char str1[100…… 题解列表 2023年11月16日 0 点赞 0 评论 83 浏览 评分:0.0