Problem J: 【二维数组】旋转(rotate)

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:31 Solved:22

Description

    输入一个n*n字符矩阵,把它左转900后输出。

Input

    第一行,一个整数n,0<=n<=100,表示n*n字符矩阵;
   接下来n行,每行n个字符
(大写或小写英文字母),表示矩阵中的数据。

Output

    左转900后的字符矩阵。

Sample Input Copy

4
a b c d
e f g h
i j k l
m n o p

Sample Output Copy

d h l p
c g k o
b f j n
a e i m

HINT

用二维数组定义为字符型(char),并不需要对二维数组元素值进行旋转赋值操作,只需按要求旋转输出即可。

Source/Category