#10548: 輸出錯誤球解


sophia891010 (sophia1010)

學校 : 臺北市立第一女子高級中學
編號 : 42228
來源 : [203.64.52.209]
最後登入時間 :
2016-06-22 11:25:54
a015. 矩陣的翻轉 | From: [203.64.52.209] | 發表日期 : 2015-12-16 11:38

#include<iostream>

#include<cstdlib>

using namespace std;

int main(){

    int a,b;

    cin>>a>>b;

    int sophia[a][b];

    int i,j;

    

    for(i=0;i<a;i++)

    {

        for(j=0;j<b;j++)

        cin>>sophia[i][j];

    }

    for(i=0;i<a;i++)

    {

        for(j=0;j<b;j++)

        {

            cout<<sophia[j][i];

        }

        cout<<endl;

    }

    system("pause");

    return 0;

}

    

 

 
ZeroJudge Forum