摘要: #include<iostream> using namespace std; void transpose(int mat[][3]) { int temp; for(int i=0;i<3;i++) { for(int j=i+1;j<3;j++) { temp=mat[i][j]; mat[i 阅读全文
posted @ 2023-05-22 23:24 刘梦磊 阅读(31) 评论(0) 推荐(0)