[编程入门]三个字符串的排序-题解(C语言代码) 摘要:```c #include #include #define zz 100 int main(){ char a[zz],b[zz],c[zz]; char z[zz]; gets…… 题解列表 2020年04月11日 0 点赞 0 评论 286 浏览 评分:0.0
编写题解 1044: [编程入门]三个字符串的排序 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string str1,str2,…… 题解列表 2021年12月09日 0 点赞 0 评论 198 浏览 评分:0.0
[编程入门]三个字符串的排序 (C语言代码) 摘要:解题思路:逐个输入,比较,输出 超简单注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[100],b[100],c[1…… 题解列表 2019年04月21日 0 点赞 0 评论 445 浏览 评分:0.0
刷题记录(头秃第n天) 摘要:#include<string.h>#include<stdio.h>#define N 100int main(){ char str1[N],str2[N],str3[N],str4[N];…… 题解列表 2022年03月20日 0 点赞 0 评论 101 浏览 评分:0.0
C语言:用指针解 摘要:解题思路:因为字符串无法直接赋值,所以利用指针切换地址即可参考代码:#include <stdio.h>#include <string.h>int main() { char str1[100…… 题解列表 2023年11月16日 0 点赞 0 评论 83 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <math.h>#include <string.h>int main(){ …… 题解列表 2017年12月17日 0 点赞 0 评论 582 浏览 评分:0.0
三个字符串的排序 摘要:解题思路:直接排序,暴力。注意事项:sort(里a是加3);参考代码:#include<bits/stdc++.h>using namespace std;string a[3]; int main(…… 题解列表 2022年05月06日 0 点赞 0 评论 156 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char A[100],B[100],C[100],D[100]; …… 题解列表 2018年05月07日 0 点赞 0 评论 463 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.2 (C语言代码) 摘要:解题思路:弄个2维数组,然后在数组中找出最大的和最小的,并记录下 index,中间那个可以用for循环找出,判断条件是不等于最大和最小index,最后 数组[index] 输出.注意事项:参考代码:…… 题解列表 2018年11月04日 0 点赞 0 评论 342 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题10.2 (C语言代码) 摘要:#include<stdio.h>#include<string.h>int main(){char *max=NULL,*min=NULL, *mid=NULL;char a[128]={0},b[…… 题解列表 2018年01月24日 2 点赞 0 评论 716 浏览 评分:0.0