Saturday, 25 July 2015

Generates table

Leave a Comment
Question:

Write a program that generates the following table:

1990             135
1991           7290
1992         11300
1993         16200

Use a single cout statement for all output.

Code:

// generates table
#include <iostream>
#include <iomanip>
using namespace std;
int main()
{
       cout << 1990 << setw(8) << 135 << endl
              << 1991 << setw(8) << 7290 << endl
              << 1992 << setw(8) << 11300 << endl
              << 1993 << setw(8) << 16200 << endl;
       return 0;
}


Output:

If You Enjoyed This, Take 5 Seconds To Share It

0 Questions: