#include<iostream.h>
#include<conio.h>
void main()
{
char g;
int m;
cout<<”\\Enter the marks”;
cin>>m;
if(m>=90&&m<=100)
g=’A’;
else if(m>=81)
g=’B’;
else if(m>71)
g=’C’;
else if(m>61)
g=’D’;
else if(m>51)
g=’E’;
else if(m>41)
g=’F’;
else
g=’U’;
if(g==’A’)
cout<<”\\Great!”;
else
cout<<”\\Not Great”;
getch();
}
Step-by-step explanation:
Here, we are declaring two variables g(char data type) and m(int data type) to get the grade and the mark respectively. We’ll enter the mark less than 100 and check it under certain conditions to assign the grade to the variable g.
So at the end we will check whether the grade given is ‘A’. If condition is true, the program will display “Great!”. Otherwise it’ll print “Not Great”.