Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
108647 | 陈骏睿 | 14马里奥吃蘑菇 | C++ | Accepted | 3 MS | 264 KB | 398 | 2025-01-21 10:05: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 a; for(a=1;a<=100;a++){ if(a%3==0){ continue; } cout<<a<<endl; } return 0; }