C 矩陣輸出 SDUT

2021-10-03 19:45:28 字數 715 閱讀 4299

time limit: 1000 ms memory limit: 65536 kib

problem description

輸入n個整數,輸出由這些整數組成的n行矩陣。

input

第一行輸入乙個正整數n(n<=20),表示後面要輸入的整數個數。

下面依次輸入n個整數。

output

以輸入的整數為基礎,輸出有規律的n行資料。

sample input

53 6 2 5 8

sample output

3 6 2 5 8

8 3 6 2 5

5 8 3 6 2

2 5 8 3 6

6 2 5 8 3

hint

source

矩陣輸出就是陣列逆序的變形,將每一次的逆序都輸出而已

#include

#include

intmain()

for(j=

1; j<=n; j++

)printf

("\n");

t=a[n-1]

;//逆序,且每一次都只能逆序乙個數;

for(i=n; i>=

0; i--

) a[0]

=t;}

return0;

}

對稱矩陣的判定 C語言 SDUT

time limit 1000 ms memory limit 65536 kib submit statistic 輸入矩陣的行數,再依次輸入矩陣的每行元素,判斷該矩陣是否為對稱矩陣,若矩陣對稱輸出 yes 不對稱輸出 no 輸入有多組,每一組第一行輸入乙個正整數n n 20 表示矩陣的行數 若n...

sdut 2710 1 4 輸出菱形

time limit 1000ms memory limit 65536kb submit statistic problem description 通過本題目的練習可以掌握c 中陣列的輸入輸出方法。從鍵盤輸入1 個int 型資料n,根據該資料,輸出乙個用 組成的菱形,這個菱形中最多一行的 的個數...

C語言輸出矩陣馬鞍點

在矩陣中,乙個數在所在行中是最大值,在所在列中是最小值,則被稱為鞍點。下面是輸出矩陣馬鞍點的源 c語言輸出矩陣馬鞍點 include void input matrix int m,int n,int a 100 100 輸入矩陣元素 void output matrix int m,int n,i...