摘要: #include <stdio.h> int main() { int arr[3][4] = { {1,2,3,4}, {9,8,7,6}, {-10,10,-5,2} }; int i,j,row=0,colum=0,max; max = arr[0][0]; for(i=0;i<=2;i++) 阅读全文
posted @ 2024-11-08 22:43 昵-称 阅读(131) 评论(0) 推荐(0)
摘要: #include <stdio.h> int main() { int arr[2][3] = { {1,2,3}, {4,5,6}, }; int i,j; int b[3][2]; for(i=0;i<=1;i++){ for(j=0;j<=2;j++){ printf("%5d",arr[i] 阅读全文
posted @ 2024-11-08 21:31 昵-称 阅读(135) 评论(0) 推荐(0)