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

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

筛选

啊哈哈哈,goto来啦

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>//输入一个正整数n (1≤ n ≤6),再输入一个n 行n列的矩阵,//找出该矩阵中绝对值最大的元……

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

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

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

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

新手必看,俩for解决

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