Run ID:100687
提交时间:2024-12-10 20:36:00
#include<bits/stdc++.h> using namespace std; int main() { int a[100]; for(int n=1;0<=n<=100;n++){ a[n]=n; } for(int n=1;n<=100;n++){ if(-1e9<=a[n]<=1e9){ cout<<a[n]<<endl; }else{ cout<<a[n]<<" "; } } return 0; }