Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
100687 郭玉洁 逆序输出 C++ Time Limit Exceeded 1000 MS 244 KB 252 2024-12-10 20:36:00

Tests(0/10):


Code:

#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; }