Skip to main content

CodeChef | Practice | Credits C++ Solution by Aryan Bhan

 


Credits 

In Uttu's college, a semester is said to be a:

  • Overload semester if the number of credits taken >65.
  • Underload semester if the number of credits taken <35.
  • Normal semester otherwise

Given the number of credits X taken by Uttu, determine whether the semester is OverloadUnderload or Normal.

Code:

#include<bits/stdc++.h>
using namespace std;
int main()
{
    ios_base::sync_with_stdio(false);
    cin.ignore(NULL);
    int t;
    cin>>t;
    while (t--)
    {
        int x;
        cin>>x;
        if(x<35)
            cout<<"Underload";
        else if(x>65)
            cout<<"Overload";
        else
            cout<<"Normal";
        cout<<"\n";    
    }
   
    return 0;
}


Sample Input 1 

4
65
80
23
58

Sample Output 1 

Normal
Overload
Underload
Normal

Comments

Post a Comment