You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. WAP in c++ to enter the marks of 5 students and calculate the average marks
//WAP in c++ to enter the marks of 5 students and calculate the average marks
#include<iostream>usingnamespacestd;intmain() {
double avg;
int subOne, subTwo, subThree, subFour, subFive, sum = 0;
cout << "Enter the marks of Subject A: ";
cin >> subOne;
cout << "Enter the marks of Subject B: ";
cin >> subTwo;
cout << "Enter the marks of Subject C: ";
cin >> subThree;
cout << "Enter the marks of Subject D: ";
cin >> subFour;
cout << "Enter the marks of Subject E: ";
cin >> subFive;
sum = (subOne + subTwo + subThree + subFour + subFive);
avg = (double)sum / 5.0;
cout << "The average is " << avg;
return0;
}