1234: C语言10.6

Memory Limit:32 MB Time Limit:1.000 S
Judge Style:Normal Judger Creator:
Submit:4 Solved:3

Description

读入12个整数,将他们按顺序保存为二维整数数组a的元素值,并输出这个数组。a的定义为int a[3][4]。

Input

输入为12个用空格隔开的不超过3位的整数。

Output

将数组按照3×4的格式输入,每个数占4位。
请注意行尾输出换行。

Sample Input Copy

1 3 5 7 9 11 13 15 17 19 21 23

Sample Output Copy

   1   3   5   7
   9  11  13  15
  17  19  21  23

Source/Category