Run ID 作者 问题 语言 测评结果 时间 内存 代码长度 提交时间
1266 tangziqi1101 逆序输出 C++ 通过 0 MS 284 KB 353 2022-04-08 19:32:58

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int sz[10001]; int main(){ int n; cin>>n; for(int i=1 ; i<=n ; i++){ cin>>sz[i]; } for(int i=n ; i>=1 ; i--){ if(sz[i]%3==0) cout<<sz[i]<<" "; } cout<<endl; for(int i=n ; i>=1 ; i--){ if(i%3==0) cout<<sz[i]<<" "; } return 0; }


测评信息: