C++ Program to Calculate Student Marks

Write a C++ Program to Calculate Student Marks with example. The below shown C++ program allows entering five different subjects marks. Next, it calculates the total, average, and percentage of those five subjects and prints the result. #include<iostream> using namespace std; int main() { int english, chemistry, computers, physics, maths; float total, average, percentage; cout … Read more