Write C++ program to print multiplication table of a given number

Introduction

I have used CodeBlocks compiler for debugging purpose. But you can use any C++ programming language compiler as per your availability.

#include <iostream>
using namespace std;
 
int main()
{
    int num=0, i;
   //Reading number
 
    cout<<"Enter number to print table: "<<endl;
    cin>>num;
    for(i=1; i<=10; i++)
    {
        //Printing table of number entered by user
        cout<<num<<" x "<<i << " = "<<num*i<<endl;
    }
    return 0;
 
}

Result

Write C++ program to print multiplication table of a given number
Write C++ program to print multiplication table of a given number

Leave a Comment