Problem C: 字符方阵
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:22
Solved:10
Description
输入一个n, 输出一个n*n的方阵,对角线上是? ,其他位置上都是*号。
场宽为5。
Input
一个数字n(n是小于10的正整数)。
Output
一个图形矩阵。
Sample Input Copy
5
Sample Output Copy
? * * * *
* ? * * *
* * ? * *
* * * ? *
* * * * ?