Run ID:153638

提交时间:2026-05-23 15:29:03

#include<bits/stdc++.h> using namespace std; int s[101]; int main() { for(int i=1; i<=100; i++) { s[i]=i; } for(int i=1; i<=100; i++) { cout<<s[i]<<" "; if(i%10==0) { cout<<endl; } } return 0; }