题解 1532: 蓝桥杯算法提高VIP-数组输出

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

筛选

11111111111111111111111111111111111

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a[3][4],i,j,max; int x,y; for(i=0;i<……

c代码记录之数组输出

摘要:没啥要注意的,他要的是行列最小坐标,直接倒序遍历比较 可加强训练的地方 1.行列数未知,自由输入 2.用指针写 #include #include ……

数组输出 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main(){ int a[4][5],i,j,max,max_x=1,max_y=……

简单的解法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int a[3][4];    int max;    for(int i=0;i<3;i++)    {……