2005年春浙江省计算机等级考试二级C 编程题(3) (Java代码) 摘要:解题思路:注意事项:个人认为,此例题的答案应该是4 1 1; 因为数组的下标是从0开始的;参考代码:import java.util.Scanner;public class Ma…… 题解列表 2018年04月12日 1 点赞 0 评论 775 浏览 评分:0.0
寻找矩阵最值 摘要:参考代码:#include<stdio.h>#include<math.h>int main(){ int n,i,j,max=0; scanf("%d",&n); int a[n][n]; for(…… 题解列表 2022年12月14日 0 点赞 0 评论 57 浏览 评分: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<math.h>#define N 7int main(){ char a[N][N]; int n,i,j,e,r; …… 题解列表 2018年08月31日 0 点赞 0 评论 446 浏览 评分:0.0
注意大括号 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2021年11月27日 0 点赞 0 评论 141 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n, i, j, a[6][6], b[6][6], k, t, …… 题解列表 2019年04月29日 0 点赞 0 评论 306 浏览 评分:0.0
编写题解 1069: 二级C语言-寻找矩阵最值(C语言小白易懂) 摘要:解题思路:两种思路:第一种:索引0开始第二种:索引1开始注意事项:第一种:注意后面打印要+1。第二种:直接打印。两种不同的方法注意for循环的条件不同。数值不得为未标识符(小白易错点)最后注意索引ma…… 题解列表 2024年05月19日 0 点赞 0 评论 60 浏览 评分:0.0
二级C语言-寻找矩阵最值-题解(C语言代码) 摘要:```c #include int main() { int a[6][6],max=-999999; int n,i,j,r,c; scanf("%d",&n); for(i=…… 题解列表 2020年03月06日 0 点赞 0 评论 277 浏览 评分:0.0
二级C语言-寻找矩阵最值-题解(C语言代码) 摘要:#注意要考虑负数的情况,所以要用的math的fabs #include #include int main() { int i, j, …… 题解列表 2019年11月12日 0 点赞 0 评论 297 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:fabs_min 初始化为0,因为任何实数的绝对值>= 0.双重循环输入二维数组,同时完成记录当前绝对值最大的元素,以及行与列。注意事项:参考代码:#include<stdio.h> …… 题解列表 2019年03月16日 0 点赞 0 评论 372 浏览 评分:0.0