1 solutions

  • 1
    @ 2026-1-8 22:28:42

    #include <bits/stdc++.h> using namespace std;

    int main() { for (int i = 1; i <= 200; i++) { if (i % 3 == 2 && i % 7 == 1) { cout << i << " "; } }

    return 0;
    

    }

    • 1

    Information

    ID
    229
    Time
    1000ms
    Memory
    64MiB
    Difficulty
    1
    Tags
    # Submissions
    94
    Accepted
    72
    Uploaded By