蓝桥杯算法提高VIP-数组输出 (C语言代码) 摘要:解题思路:这一题应该是表述有误,应该是输出绝对值最大的那个行下标最小列下标最小的数注意事项:参考代码:#include<stdio.h>#include<math.h>int abs(int x);i…… 题解列表 2019年05月12日 0 点赞 0 评论 611 浏览 评分: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 评论 1189 浏览 评分: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 评论 877 浏览 评分: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 评论 401 浏览 评分: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 评论 584 浏览 评分:0.0
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)水啊,水啊,水经验啊! 摘要:解题思路:随便你注意事项:无参考代码:#include<stdio.h>int main(){ int a[10]; int k=0,i,sum=0; float avg; for(i=0;i<10;…… 题解列表 2019年05月12日 0 点赞 0 评论 502 浏览 评分:0.0
C二级辅导-等差数列 (C语言代码)水经验的路过!! 摘要:解题思路:随便你!注意事项:无参考代码:#include<stdio.h>int main(){ int n; int i,j; int sum=0; scanf("%d",&n); for(i=1,…… 题解列表 2019年05月12日 0 点赞 0 评论 769 浏览 评分:0.0
C二级辅导-公约公倍 (C语言代码)水经验!! 摘要:解题思路:随便你注意事项:无参考代码:#include<stdio.h>int main(){ int m,n; int m1,n1; int b; scanf("%d%d",&m,&n); m1=m…… 题解列表 2019年05月12日 0 点赞 0 评论 609 浏览 评分:0.0
2004年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)水经验!!! 摘要:解题思路:随便你注意事项:无!参考代码:#include<stdio.h>#include<math.h>int main(){ int a[10]; int i,m,t; for(i=0;i<10;…… 题解列表 2019年05月12日 0 点赞 0 评论 576 浏览 评分:0.0
字符逆序 (C语言代码)水经验!! 摘要:解题思路:随便你注意事项:无参考代码:#include<stdio.h>#include<string.h>#define N 101int main(){ char a[N]; int len,i;…… 题解列表 2019年05月12日 0 点赞 0 评论 795 浏览 评分:0.0