Answer to Question #7582 in C++ for M AAMIR
WRITE A PROGRAM THAT GENERATES THE FOLLOWING TABLES
1990 135
1991 7290
1992 11300
1993 16200
1
2012-03-27T09:14:32-0400
# include<iostream.h>
# include<conio.h>
void main(){
int N=1990;
cout<<N;
cout<<" quot;;
cout<<"135\n";
cout<<N+1;
cout<<" quot;;
cout<<"7290\n";
cout<<N+2;
cout<<" quot;;
cout<<"11300\n";
cout<<N+3;
cout<<" quot;;
cout<<"16200\n";
}
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