| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 130294 | 李茗宇 | 12输出3的倍数 | C++ | Accepted | 0 MS | 260 KB | 345 | 2025-09-10 19:39:34 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int n,i,k; for(k=3;k<=100;k+=3){ cout<<k<<' '; } return 0; }