C语言实验——矩阵转置

C语言实验——矩阵转置

Time Limit: 1000MS  Memory Limit: 65536KB
Submit  Statistic

Problem Description

输入N*N的矩阵,输出它的转置矩阵。

Input

第一行为整数N(1≤N≤100)。
接着是一个N*N的矩阵。

Output

转置矩阵。

Example Input

2
1 2
1 2

Example Output

1 1
2 2
#include 
#include 
int main()
{
    int n,i,j,a[100][100],t;
    scanf("%d",&n);
    for(i=0;i 
 

你可能感兴趣的:(山东理工大学,oj,实验7二维数组的运用,acm,class,c语言,实例,山东理工,acm)