Here in this page we will print table Table in C++ actually it will be Print a large form of table you can see the Program output below,
#include<iostream>
using namespace std;
int main()
{
int first,last;
cout<<"Enter first number: "; cin>>first;
cout<<"Enter last number: "; cin>>last;
int i =1;
while(i<=10)
{
for(int j=f; j<=l;j++)
{
cout<<i*j<<"\t";
}
cout<<endl;
i++;
}
return 0;
}
OUTPUT
Enter first number: 5
Enter last number: 15
5 6 7 8 9 10 11 12 13 14 15
10 12 14 16 18 20 22 24 26 28 30
15 18 21 24 27 30 33 36 39 42 45
20 24 28 32 36 40 44 48 52 56 60
25 30 35 40 45 50 55 60 65 70 75
30 36 42 48 54 60 66 72 78 84 90
35 42 49 56 63 70 77 84 91 98 105
40 48 56 64 72 80 88 96 104 112 120
45 54 63 72 81 90 99 108 117 126 135
50 60 70 80 90 100 110 120 130 140 150
Explanation
The Program will be ask to enter any two value, where first value will be the starting point and second will be last,
suppose user entered following input,
first = 5, second = 20
so program will be print table from 5 to 15.
C++ Examples