/**********************************************************************************/
/* Problem: a015 "矩陣的翻轉" */
/* Language: C */
/* Result: AC (0ms, 302KB) on ZeroJudge */
/* Author: youc at 2010-04-03 01:42:41 */
/**********************************************************************************/
#include<stdio.h>
int main(){
int a,b;
int A[100][100]={0};
int i=0,j=0;
while(scanf("%d%d",&a,&b)!=EOF){
for(j=0;j<a;j++) {
for(i=0;i<b;i++)
scanf("%d",&A[j][i]);
}
for(j=0;j<b;j++){
for(i=0;i<a;i++){
printf("%d ",A[i][j]);
}
printf("\n");
}
}
return 0;
}
-------------------------------------
想請問高手,
這題我在這邊跑出來正確,
但我使用VIM打入INPUT,怎麼樣都無法跑OUTPUT出來,
為什麼會這樣呢?卡了好久丟上來確無誤...??