A C++ program to print table of any number

A C++ program to print table of any number

        The logic of this code is very simple, multiply the given number from 1 to 10 and the table is ready. Using loop the task is performed the symbols will be printed directly using the "cout" statement.


Code

#include <iostream>

using namespace std;


int main()

{

    int n;

    cin>>n;

    

    for(int i=1;i<=10;i++){

        int m=n*i;

        cout<<n<<" * "<<i<<" = "<<m<<endl;

    }

    

    return 0;

}


Input: 5

Output: 

5 * 1 = 5

5 * 2 = 10

5 * 3 = 15

5 * 4 = 20

5 * 5 = 25

5 * 6 = 30

5 * 7 = 35

5 * 8 = 40

5 * 9 = 45

5 * 10 = 50

Post a Comment

0 Comments