| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 141956 | 周佳豪 | 12for循环练习I | C++ | Wrong Answer | 0 MS | 264 KB | 146 | 2025-12-29 16:46:36 |
#include<iostream> using namespace std; int main(){ for(int i=99;i>=11;i--){ if(i%11==0){ cout<<i<<" "; } } }
------Input------
4
------Answer-----
1 2 3 4
------Your output-----
99 88 77 66 55 44 33 22 11