二级C语言-寻找矩阵最值-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<math.h>/*double dfs(int x){ if(x<0) retur…… 题解列表 2020年07月25日 0 点赞 0 评论 141 浏览 评分: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
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i,j,imax=0,jmax=0,max; scanf("%d",&n); int s[n][n]…… 题解列表 2019年05月31日 0 点赞 0 评论 264 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n,a[10][10]; int i,j,maxi,ma…… 题解列表 2018年08月25日 0 点赞 0 评论 471 浏览 评分:0.0
2005年春浙江省计算机等级考试二级C 编程题(3) (Java代码) 摘要:import java.util.*; public class Main { public static void main(String[] args) { Scanner cin=n…… 题解列表 2017年12月26日 0 点赞 0 评论 979 浏览 评分:0.0
二级C语言-寻找矩阵最值-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <cmath> using namespace std; int main(){ int x,a[7…… 题解列表 2020年08月16日 0 点赞 0 评论 241 浏览 评分:0.0
Kanna-寻找矩阵最值(C语言代码) 摘要: #include int main(){ int n, i, j, low, r; scanf("%d", &n); int a[6]…… 题解列表 2019年12月05日 0 点赞 0 评论 320 浏览 评分:0.0
二级C语言-寻找矩阵最值-题解(C语言代码) 摘要:```c #include #include int main() { int i,j,n,a[6][6],k,m,max; scanf("%d",&n); fo…… 题解列表 2021年02月03日 0 点赞 0 评论 190 浏览 评分:0.0
请看此 (Java代码) 摘要:解题思路:首先,我认为题本身没错。注意事项:要学会电脑思维,却不能陷入电脑的思维无法自拔。此处要求的是输出行和列,勿误解参考代码:import java.util.Scanner; public c…… 题解列表 2018年05月23日 0 点赞 0 评论 511 浏览 评分:0.0
简易代码(C)望空破茧 摘要:解题思路:输入一个正整数n (1≤ n ≤6),再输入一个n 行n列的矩阵,找出该矩阵中绝对值最大的元素以及它的行下标和列下标。注意事项: int n; …… 题解列表 2022年06月23日 0 点赞 0 评论 127 浏览 评分:0.0