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

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

筛选

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

摘要:解题思路:一边输入一遍比较注意事项: 憨批题目的下标输出时要+1参考代码:#include <stdio.h>#include <math.h>#define ROW 3#define COL 4in……

11111111111111111111111111111111111

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

数组输出 (C语言代码)

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

简单的解法

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