Sun Oct 27 2019
Grade Calculation
C++ Programming2476 views
File Name: grade-calculation.cpp
#include<iostream>
using namespace std;
int main() {
int marks;
cout << "Enter a the marks of a subject for grade calculation:\n";
cin >> marks;
/* Decision making with IF ELSE */
if(marks >= 90)
cout << "Grade: A+\n";
else if(marks >= 80)
cout << "Grade: A\n";
else if(marks >= 60)
cout << "Grade: B\n";
else if(marks >= 40)
cout << "Grade: C\n";
else
cout << "Grade: D\n";
return 0;
}
/* Output */
/* Enter a the marks of a subject for grade calculation:
89
Grade: A */
Author:Geekboots