Answer to Question #39151 in C++ for Abhishek

Question #39151
1. 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
2014-03-04T10:50:32-0500
#include<iostream> // for cout and cin
#include <stdlib.h> // for system
using namespace std;


int main()
{
cout<<"1990 135"<<endl<<"1991 7290"<<endl<<"1992 11300"<<endl<<"1993 16200"<<endl;
system("pause");
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!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
APPROVED BY CLIENTS