二级C语言-寻找矩阵最值 摘要:解题思路:定义一个n,用for语句双重循环来报酬n*n的矩阵,再用if语句找出最大值,用x,y记录最大值的索引位置再加1;注意事项:x,y不要忘记加1参考代码:#include<stdio.h>#in…… 题解列表 2021年09月13日 0 点赞 0 评论 123 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n,i,j,a[7][7]={0},x,y; scanf("%d",&n…… 题解列表 2018年01月29日 0 点赞 0 评论 546 浏览 评分:0.0
定义动态二维数组 摘要:解题思路:遍历找到最小值注意事项:参考代码:#include<stdio.h>#include<stdlib.h>int main(){ int n;int min,a,b; while(…… 题解列表 2022年12月10日 0 点赞 0 评论 65 浏览 评分:0.0
二级C语言-寻找矩阵最值-题解(C语言代码) 摘要:#include<stdio.h> #include<math.h> int main() { int n,a[10][10]; int i,j,m,k; int max; m=…… 题解列表 2021年02月04日 0 点赞 0 评论 138 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n, i,j,row,col; int max; int a[10][1…… 题解列表 2019年05月24日 0 点赞 0 评论 404 浏览 评分:0.0
寻找矩阵最值 摘要:```cpp #include using namespace std; int main() { int n,a[6][6],q,w; cin>>n; if(n>=1&&…… 题解列表 2022年03月05日 0 点赞 0 评论 84 浏览 评分: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语言代码) 摘要:解题思路:注意事项:注意要用函数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
注意大括号 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2021年11月27日 0 点赞 0 评论 141 浏览 评分:0.0
代码的尽头是优雅 摘要:解题思路:制造容器,定义一个二维数组, 定义标记,记录最小值的行列号注意事项:行列号要在代码的基础上+1参考代码import java.util.Scanner;public class Main {…… 题解列表 2023年11月17日 0 点赞 0 评论 36 浏览 评分:0.0