Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
6131 詹梓涵 14马里奥吃蘑菇 C++ Accepted 1 MS 252 KB 396 2025-01-04 10:44:48

Tests(1/1):


Code:

#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=0; for(int i=1;i<=100;i++){ if(i%3!=0) n++; if(i%3==0) continue; cout<<i<<endl; } return 0; }