Answer to Question #346538 in C++ for Ghulam Nabi

Question #346538

Q#4: Write a program that generates the Following table:

1990 135

1991 7290

1992 11300

1993 16200

Use a Single cout statement for all output.


1
Expert's answer
2022-05-31T10:03:50-0400
#include <iostream>


using namespace std;


int main()
{
	cout << 1990 << " " << 135 << endl
		<< 1991 << " " << 7290 << endl
		<< 1992 << " " << 11300 << endl
		<< 1993 << " " << 16200;
}

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!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS