Answer to Question #57377 in C++ for Sajid
Q.2: write a program to display the following output using a single cout statement.
Subjects Marks
Mathematics 90
Computer 80
English 70
1
2016-01-20T07:19:36-0500
#include <iostream>
using namespace std;
int main()
{
cout << "Subjects Marks\nMathematics 90\nComputer 80\nEnglish 70\n";
system("pause"); // Delay
return 0;
}
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
C++
Comments
Leave a comment