| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 132834 | 何兴驰 | 12for循环练习III | C++ | Output Limit Exceeded | 1 MS | 272 KB | 152 | 2025-10-12 12:23:58 |
#include<bits/stdc++.h> using namespace std; int main(){ int i; for(int i=100;i>=1;i++){ if(i % 3==0){ cout<<i<<" "; } } }