1 solutions

  • 0
    @ 2025-11-5 17:01:17

    C++ :

    #include<cstdio>
    #include<cstdlib>
    #include<ctime>
    #include<iostream>
    #include<math.h>
    using namespace std;
    
    int main()
    {
    
        int s = 0;
        for( int i = 10; i <= 100; i += 2 ) {
            if(i >= 80 && i <= 92 )
                s++;
        }
        printf("%d\n", s);
        return 0;
    }
    
    • 1

    Information

    ID
    18157
    Time
    1000ms
    Memory
    128MiB
    Difficulty
    (None)
    Tags
    # Submissions
    0
    Accepted
    0
    Uploaded By