摘要:
#include<stdio.h>#define M 5#define N 6 bool f(int (*a)[N],int i,int j){ for(int x=0;x<M;x++) { if(a[x][j]<a[i][j]) return false; } return true; } voi 阅读全文
posted @ 2022-01-28 23:29
城北徐公135
阅读(117)
评论(0)
推荐(0)
摘要:
#include<stdio.h> int main(){ //1、完全初始化 // int a[3][4]={1,2,3,4,5,6,7,8,9,10,11,12};// int a[3][4] = {// {1,2,3,4,},// {5,6,7,8},// {9,10,11,12}// }; 阅读全文
posted @ 2022-01-28 15:54
城北徐公135
阅读(300)
评论(0)
推荐(0)