Programming Languages
Welcome to coding world
C++ Program to Find Grade of a Student using if else
Write a C++ Program to Find Grade of a Student using if
else. Here’s simple C++ Program to Find Grade of a Student using if else in C++
Programming Language.
Numbers in C++
Normally, when we work with Numbers, we use primitive data types such as int, short, long, float and double, etc. The number data types, their possible values and number ranges have been explained while discussing C++ Data Types.
To calculate grade of a student on the basis of his total marks in C++ Programming, you have to ask to the user to enter marks obtained in some subjects.
To calculate grade of student, first calculate the mark’s sum of all the subjects and then calculate average marks. Now start checking for the grades to display the result as shown here in the following program.
Here is source code of the C++ Program to Find Grade of a
Student using if else. The C++ program is successfully compiled and run(on
Codeblocks) on a Windows system. The program output is also shown in below.
SOURCE CODE :
/* C++ Program to Find Grade of a Student using
if else */
#include<iostream>
using namespace std;
int main()
{
int mark[5], i;
float sum=0,avg;
cout<<"\nEnter Marks in 5
subjects :: \n";
for(i=0; i<5; i++)
{
cout<<"\nEnter Marks[
"<<i+1<<" ] :: ";
cin>>mark[i];
sum=sum+mark[i];
}
avg=sum/5;
cout<<"\nYour Grade is ::
";
if(avg>80)
{
cout<<"[ A
]\n";
}
else if(avg>60 && avg<=80)
{
cout<<"[ B
]\n";
}
else if(avg>40 &&
avg<=60)
{
cout<<"[ C
]\n";
}
else
{
cout<<"[ D
]\n";
}
return 0;
}
OUTPUT :
/* C++ Program to
Find Grade of a Student using if else */
Enter Marks in 5 subjects ::
Enter Marks[ 1 ] :: 78
Enter Marks[ 2 ] :: 87
Enter Marks[ 3 ] :: 67
Enter Marks[ 4 ] :: 99
Enter Marks[ 5 ] :: 90
Your Grade is :: [ A ]
Process returned 0
Above is the source code for C++ Program to Find Grade of a
Student using if else which is successfully compiled and run on Windows System. The Output of the program is shown above.