5 条题解

  • 1
    @ 2022-11-10 19:36:15

    #include using namespace std; int main() { for(int i=1;i<=500;i++) { if (i%32&&i%53&&i%7==2) { cout<<i<<endl; } } return 0; }

  • 1
    @ 2022-7-14 10:56:22

    #include"iostream" using namespace std; int main() { for(int i=1;i<=500;i++){ if (i%32&&i%53&&i%7==2){ cout<<i<<endl; } } return 0; }

    • @ 2022-7-14 10:57:36

      这里因为markdown语法所以题解不能正常上传,高亮部分两边有两个等号,请注意

  • 0
    @ 2023-11-18 11:23:35

    #include #include #include #include #include using namespace std; int main() { int y; for(int i=1;i<=500;i++) { y=0; if(i%53) { y++; } if(i%32) { y++; } if(i%72) { y++; } if(y3) { cout<<i<<endl; } } return 0; }

    • 0
      @ 2023-6-3 8:48:37
      #include<bits/stdc++.h>
      using namespace std;
      int main(){
      	for(int i=1;i<=500;i++){
      		if(i%3==2&&i%5==3&&i%7==2){
      			cout<<i<<endl;
      		}
      	}
      	return 0;
      	}
      
      • 0
        @ 2023-2-23 16:21:33
        #include<bits/stdc++.h>
        using namespace std;
        int main(){
        	for(int i=1;i<=500;i++){
        		if(i%3==2&&i%5==3&&i%7==2){
        			cout<<i<<endl;
        		}
        	}
        	return 0;
        	}
        
        
        • 1

        信息

        ID
        14
        时间
        1000ms
        内存
        16MiB
        难度
        3
        标签
        递交数
        390
        已通过
        219
        上传者