(应该是最省内存的了吧)2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:因为不用输出矩阵,实质上只需要两个数就行了,一个记录历史最大值,另一个储存当前值,满了之后丢弃两者之中最小值,我的代码里写得可能有点繁琐,主要是用了比较长的变量名和较多的三元运算符/* ps…… 题解列表 2018年03月07日 1 点赞 0 评论 710 浏览 评分: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
二级C语言寻找矩阵最值简单易懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int c,n,i,j,max=0; int a…… 题解列表 2021年07月27日 0 点赞 0 评论 169 浏览 评分:0.0
二级C语言-寻找矩阵最值-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,j,max,b; scanf("%d",&n); int a[n][n]; for(i=0;i<…… 题解列表 2020年07月14日 0 点赞 0 评论 239 浏览 评分:0.0
二级C语言-寻找矩阵最值 摘要:解题思路:注意事项:C语言 abs() 函数用于求整数的绝对值。头文件:math.h 或者 stdlib.h语法/原型:int abs(int n);n 表示要求绝对值的数。返回值:参数的绝对值。参考…… 题解列表 2023年03月10日 0 点赞 0 评论 39 浏览 评分:0.0
二级C语言-寻找矩阵最值-题解(C语言代码) 摘要:#include <stdio.h> #include <math.h> int main() { double arr[6][6],ret = 0; int n, m,…… 题解列表 2020年11月29日 0 点赞 0 评论 150 浏览 评分:0.0
二级C语言-寻找矩阵最值-题解(C++代码) 摘要: ```cpp #include #include using namespace std; int main() { int n; cin>>n; int a[n][…… 题解列表 2019年11月17日 0 点赞 0 评论 404 浏览 评分: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; int a[6][6]; int i,j,mi,mj;…… 题解列表 2019年06月02日 0 点赞 0 评论 375 浏览 评分: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