#20654: C 請幫我看看這樣哪裏錯


pupss97121@gmail.com (Alexxx)

學校 : 國立新竹高級中學
編號 : 114990
來源 : [111.243.110.103]
最後登入時間 :
2022-07-24 20:41:40
a015. 矩陣的翻轉 | From: [114.25.191.37] | 發表日期 : 2020-02-16 19:34

 

測資有過 但評分WA

#include <string.h>
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>

int main(int argc,char*argv[]){

int i,j;
int column,row;
int array[100][100]={0};
int answer[100][100]={0};


scanf("%d",&row);
// getchar();
scanf("%d",&column);
getchar();

if(row>100||column>100) return -1;

if (row == 0 || column == 0) return 0;


for(i=0;i<row;i++){

for(j=0;j<column;j++){

scanf("%d",&array[i][j]);
}
getchar();
}


for(i=0;i<row;i++){

for(j=0;j<column;j++){

answer[j][i]=array[i][j];
}
}


for(i=0;i<column;i++){

for(j=0;j<row;j++){

printf("%d ",answer[i][j]);
}
printf("\n");
}
printf("\n");
}

 

 
ZeroJudge Forum