c++数组-矩阵的转置
摘要:#include using namespace std;int main(){ int a[2][3]={{1,2,3},{4,5,6}}; int i,j,b[3][2]; for(j=0;j<2;j++){ for(i=0;i<3;i++){ ...
阅读全文
posted @ 2014-10-25 20:28
posted @ 2014-10-25 20:28
posted @ 2014-10-25 18:35
posted @ 2014-10-21 20:48