2 条题解

  • 0
    @ 2023-5-17 21:01:08
    #include <bits/stdc++.h>
    using namespace std;
    
    int main() {
    	int a;
    	cin >> a;
    	for (int i = 1; i <= a; i++) {
    		for (int j = i; j < i + a; j++) {
    			if (j / 10 != 1) {
    				cout << " ";
    			}
    			cout << " "<< j ;
    		}
    		cout << endl;
    	}
    
    	return 0;
    }
    
    • 0
      @ 2023-5-17 21:00:47

      #include <bits/stdc++.h> using namespace std;

      int main() { int a; cin >> a; for (int i = 1; i <= a; i++) { for (int j = i; j < i + a; j++) { if (j / 10 != 1) { cout << " "; } cout << " "<< j ; } cout << endl; }

      return 0;
      

      }

      • 1

      信息

      ID
      192
      时间
      1000ms
      内存
      16MiB
      难度
      6
      标签
      递交数
      22
      已通过
      11
      上传者