[编程入门]三个数字的排序 (C语言代码) 摘要:解题思路:三目运算符注意事项:找第二大值要好好理一ha~参考代码:#include<stdio.h>int main(){ int a,b,c; scanf("%d %d %d",&a,&b,&c);…… 题解列表 2019年05月11日 0 点赞 0 评论 718 浏览 评分:0.0
数据结构-快速排序 (C语言代码) 摘要:#include<stdio.h> int Middle(int a[],int l, int r); void Quicksort(int a[],int l, int r); int mai…… 题解列表 2019年05月12日 0 点赞 0 评论 1146 浏览 评分:0.0
数组待定选择 摘要:解题思路:把每个月之前的月份天数之和加起来待用注意事项:取值的时候由于数组的特性需要在月份上减1参考代码:#include<stdio.h>int run(int a);int main(){ …… 题解列表 2019年05月12日 0 点赞 0 评论 899 浏览 评分:0.0
[编程入门]结构体之成绩记录 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#define n 100#include<string.h>struct input{ char num[20]; char name…… 题解列表 2019年05月12日 0 点赞 0 评论 665 浏览 评分:0.0
C语言训练-自守数问题 (C语言代码) 摘要:解题思路:传统小白思维只为给小白看:1.先判断是几位数,2.然后将数平方用‘%’取余,3.判断最后几位数是否与原数相等注意事项:用VC6编译容易出现的问题:1.数据过大int 装不下解决办法,使用lo…… 题解列表 2019年05月12日 0 点赞 0 评论 1631 浏览 评分:0.0
蓝桥杯算法提高VIP-数组输出 (C语言代码) 摘要:解题思路:这一题应该是表述有误,应该是输出绝对值最大的那个行下标最小列下标最小的数注意事项:参考代码:#include<stdio.h>#include<math.h>int abs(int x);i…… 题解列表 2019年05月12日 0 点赞 0 评论 717 浏览 评分:0.0
蓝桥杯算法提高VIP-模拟计算器 (C语言代码) 摘要:#include<stdio.h> int main() { int a,b; char ch; //a=b=2; scanf("%d %d %c",&a,&b,&ch); …… 题解列表 2019年05月12日 0 点赞 0 评论 1363 浏览 评分:0.0
矩阵最大值 (C语言代码)嗯。。。。这题我没写题解?? 摘要:解题思路:随便吧。。。注意事项:多组输入!!!参考代码:#include<stdio.h>#define N 100int main(){ int a[N][N],sum[N]; int m,n; i…… 题解列表 2019年05月12日 0 点赞 0 评论 1068 浏览 评分:0.0
[编程入门]矩阵对角线求和 (C语言代码)来来,写题解混经验!! 摘要:解题思路:随便你注意事项:无参考代码:#include<stdio.h>int main(){ int a[3][3]; int i,j; int sum1,sum2; sum1=sum2=0; fo…… 题解列表 2019年05月12日 0 点赞 0 评论 500 浏览 评分:0.0
[编程入门]数组插入处理 (C语言代码)水啊,水经验!! 摘要:解题思路:随便你注意事项:无参考代码:#include<stdio.h>int main(){ int a[10]; int x,i,t; for(i=0;i<9;i++) scanf("%d",&…… 题解列表 2019年05月12日 0 点赞 0 评论 692 浏览 评分:0.0