摘要: 1 #include<stdio.h> 2 #include<math.h> 3 4 int main(){ 5 //二行三列矩阵,第一行数据为1,2,3;第二行数据为4,5,6 6 int arr[2][3] = {{1,2,3},{4,5,6}}; 7 int arrTran[3][2]; // 阅读全文
posted @ 2021-03-01 15:48 sunshine233 阅读(271) 评论(0) 推荐(0) 编辑