Answer to Question #39151 in C++ for Abhishek
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
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!
Learn more about our help with Assignments:
C++
Comments
Leave a comment