C++ Program to Find Student Grade

Write a C++ program to find student grades using their marks. The below C++ program allows users to enter marks of five different subjects. Next, we are calculating the total, average, and percentage of those five subjects. Based on the percentage, we are printing the student grade. #include<iostream> using namespace std; int main() { int … Read more