This program accept marks for different subjects and then displays the marks and then the total in the screen.
SAMPLE PROGRAM:
#include <iostream.h>
#include <conio.h>
int main()
{
clrscr();
float sub1, sub2, sub3, total;
cout<<"Enter marks obtained in three subjects: ";
cingt;gt; sub1 gt;gt; sub2 gt;gt; sub3;
total = sub1 + sub2 + sub3;
cout<<"The marks obtained are: " <<'\n';
cout<<sub1<<'\n';
cout<<sub2<<'\n';
cout<<sub3<<'\n';
cout<<" Total marks = " << total;
return 0;
}
OUTPUT:
Enter marks obtained in three subjects: 90
92
90
The marks obtained are:
90
92
90
Total marks = 272
ALSO CHECK THE FOLLOWING C++ PROGRAMS:
-- C++ Program To Accept & Print The User’s Age.
-- C++ Program To Print A String.
-- C++ Program To Accept & Display A Number.
-- C++ Program To Print Sum Of Two Values.
-- C++ Program To Print Square Of A Numeric Value.
-- C++ Program To Accept & Print Marks & Find Total.
-- C++ Program To Accept Three Numbers & Print Percentage Marks.
-- C++ Program To Check Whether A Number Is Greater Than 100 Or Not.
-- C++ Program To Check Whether A Number & It's Log Value Are Greater Than 10 Or Not.
-- C++ Program To Check Whether A Number Is Prime Or Not.
-- C++ Program To Calculate The Area Of A Rectangle.
-- C++ Program To Find The Square Root Of A Number.
-- C++ Program To Calculate The Greatest Common Divisor Of Two Numbers.
-- C++ Program To Accept A Number 'n' & Find Sum Of All Numbers Upto 'n'.
... Return To C++ Programs Index
... Return To C++ FAQ's Index
... Return To C Programs Index
... Return To C FAQ's Index
... Return To HR Interview Index
Comments
Post a Comment
Please share your opinions and suggestions or your experience in the comments section. This way we can all help each other...
Experienced guys can share their resumes at admin@interview-made-easy.com