提交时间:2026-05-21 20:06:25
运行 ID: 441452
#include<bits/stdc++.h> using namespace std; main(){ int n; cin>>n; for(int i=1;i<=n;i++){ long long t=1; for(int j=1;j<=n;j++){ cout<<t; t++; } cout<<endl; } return 0; }