Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
57885 木木老师 二维数组输出(1) Python3 Accepted 33 MS 3772 KB 151 2023-09-15 10:56:15

Tests(3/3):


Code:

n=int(input()) count=1 for i in range (n): for j in range (n-1): print(count,end=" ") count+=1 print(count) count+=1