二级C语言-寻找矩阵最值 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { //因为n>=1&&n<=6,所以把数组定义为a[6][6] int n=0,a…… 题解列表 2024年06月09日 0 点赞 0 评论 70 浏览 评分:0.0
1069: [C语言]寻找矩阵最值 摘要:#include <stdio.h>int main (){ //矩阵阶数的输入 int n; scanf("%d",&n); //创建矩阵与最大值 int a[n][n]; int x,y;…… 题解列表 2021年05月07日 0 点赞 0 评论 156 浏览 评分:0.0
此解可AC (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n, i, j, c = 0, l = 0, max = 0; doub…… 题解列表 2018年07月15日 1 点赞 0 评论 581 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3)-题解(C语言代码) 摘要:#include #include int main() { int n,a[100][100],i,j,max,maxi=1,maxj=1; scanf("%d",&n); for…… 题解列表 2019年06月15日 0 点赞 0 评论 352 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>int main(){ int map[6][6]; int i,j,n; int r,c,ma…… 题解列表 2019年01月18日 0 点赞 0 评论 236 浏览 评分:0.0
二级C语言-寻找矩阵最值-题解(C语言代码) 摘要:解题思路:二维数组要用两次循环来赋值和计算。注意事项:注意题目要求,所以x=i+1,y=j+1.参考代码:#include <stdio.h>int main(){ int …… 题解列表 2020年11月19日 0 点赞 0 评论 297 浏览 评分:0.0
用二维数组做存储结构,内含二维数组函数传参 摘要:解题思路:注意事项:if(n>=1&&n<=6)//题目要求n的取值范围参考代码:#include<stdio.h> #define N 6 void input_function(int n,i…… 题解列表 2022年12月25日 0 点赞 0 评论 68 浏览 评分:0.0
简略 易懂型解法思路(参考) 摘要:解题思路:采用输入边输入,边比较。注意事项:1.k1 k2需要加1哦。2.少年人看了不赞是要出大事的哦。参考代码:#include<stdio.h> #include<math.h> int ma…… 题解列表 2018年03月09日 0 点赞 0 评论 595 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[6][6],n,i,j,max,k,l; scanf("%d",&n); for(i=0;i<n;i…… 题解列表 2019年05月05日 0 点赞 0 评论 285 浏览 评分:0.0
二级C语言-寻找矩阵最值-题解(C语言代码) 摘要:解题思路:注意事项:注意要用函数fabs将数组变为绝对值比较参考代码:#include <stdio.h>#include <math.h>int main(){ int n,i,j,x=0,y=0,…… 题解列表 2020年11月26日 0 点赞 0 评论 192 浏览 评分:0.0