Credits
In Uttu's college, a semester is said to be a:
- Overload semester if the number of credits taken .
- Underload semester if the number of credits taken .
- Normal semester otherwise
Given the number of credits taken by Uttu, determine whether the semester is Overload
, Underload
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
CodeChef Problems Solutions
ReplyDelete