Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
97885 | 罗迎甲 | 14报数拿糖 | C++ | Accepted | 1 MS | 260 KB | 448 | 2024-11-16 17:22:44 |
#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 a,b=0; for(a=1;a<=100;a++){ b++; if(b==11) b=1; if(a%3!=0) continue; cout<<b<<" "; } return 0; }