Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update average marks.cpp #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions average marks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,18 @@ using namespace std;
int main()
{
int m1,m2,m3,m4,m5,average;
cout << "Enter Marks Obtained In 5 Subjects:";
cin>>m1>>m2>>m3>>m4>>m5;
average=(m1+m2+m3+m4+m5)*5;
cout << "Enter Marks Obtained In 1st Subjects:";
cin>>m1;
cout << "Enter Marks Obtained In 2nd Subjects:";
cin>>m2;
cout << "Enter Marks Obtained In 3rd Subjects:";
cin>>m3;
cout << "Enter Marks Obtained In 4th Subjects:";
cin>>m4;
cout << "Enter Marks Obtained In 5th Subjects:";
cin>>m5;
cout<<"Average="<<"("<<m1<<"+"<<m2<<"+"<<m3<<"+"<<m4<<"+"<<m5<<")"<<"/5"
average=(m1+m2+m3+m4+m5)/5;
cout<<"\n"<<"Average Marks:"<<average;
return 0;
}