eolymp
bolt
Try our new interface for solving problems
Problems

The level of educational achievements

published at 2/9/17, 4:00:24 pm

Не компилирует, подскажите решение!!! От этого зависит мой табель...плак-плак

published at 1/13/24, 2:39:45 pm

include<bits/stdc++.h>

using namespace std; int main(){

long long n;
cin>>n;
if(n==1||n==2||n==3){
    cout<<"Initial";
}
else if(n==4||n==5||n==6){
    cout<<"Average";
}
else if(n==7||n==8||n==9){
    cout<<"Sufficient";
}
else{
    cout<<"High";
}

} //TECHNOBLADE NEVER DIE

published at 1/16/24, 10:25:04 am

n = int(input()) if n>=1 and n<=3: print("Initial") elif n >= 4 and n<=6: print("Average") elif n >= 7 and n<=9: print("Sufficient") else: print("High")