题解 1069: 二级C语言-寻找矩阵最值

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

新手必看,俩for解决

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main() {    int n,i,j,h,l; scanf("%d",&n); int a[n][n]; for(i=0;……

最复杂的解题方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int a[10][10];    int i,j,n,b=0,c=0,max=0;    scanf("……

使用嵌套数组解决

摘要:解题思路:python中无法创建矩阵,但是可以使用数组进行模拟矩阵,模拟后使用max函数和abs函数进行输出绝对值最大值,最后使用遍历找出数组的位置,因为数组的位置是从0开始,所以最后i,j坐标分别都……

二级C语言-寻找矩阵最值

摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() {         //因为n>=1&&n<=6,所以把数组定义为a[6][6] int n=0,a……

1069寻找矩阵最值

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); int a[n+1][n+1]; for(int i=1;i<=n……

简单方法,不涉及函数内容

摘要:解题思路:注意事项:参考代码:n = int(input()) m = 0 k = [None] * 3 my_list = [list(map(int, input().strip().spl……

寻找矩阵最值

摘要:解题思路:用两个for循环拿到二位数组中的所有元素在拿到的过程中找到最大值与最大值的行列下标,最后输出即可注意事项:参考代码:#include<iostream>using namespace std……