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.

Expert's answer

#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;
}
LATEST TUTORIALS
APPROVED BY CLIENTS