03/03/2015

C++ Program To Print Table Of Any Given Number

Problem :- Write A Program To Find Table Of Any Given Number Entered By User

Logic :- Take a input from user then use an any loop and start with condition =1;condition <=10; and increase by one each time ,and multiply input with condition and print .

Solution :-

Method 1:- 

#include<iostream>
using namespace std;

int main()
{
    int i,a,num;
    cout<<"Enter The Number That You Want To Print Table \n";
    cin>>num;

    for(i=1;i<=10;i++)
    {
        a=num*i;
        cout<<num<<" * "<<i<<" = "<<a<<endl;
    }

    return 0;

}

Method 2:- Here is An Another Way to Find Any  Table

 #include<iostream>
using namespace std;
int main()
{
    int i,j,num;
    
    cout<<"Enter The Number That You Want To Print Table \n";
    cin>>num;
    
    for(i=num,j=1;j<=10 &&i<=10*num;i=i+num,j++)
    {
        cout<<num<<" * "<<j<<" = "<<i<<endl;
    }
    return 0;
}

Output:-

C++ Program To Print Table Of Any Given Number

Previous Post
Next Post

post written by:

Hi, I’m Ghanendra Yadav, SEO Expert, Professional Blogger, Programmer, and UI Developer. Get a Solution of More Than 500+ Programming Problems, and Practice All Programs in C, C++, and Java Languages. Get a Competitive Website Solution also Ie. Hackerrank Solutions and Geeksforgeeks Solutions. If You Are Interested to Learn a C Programming Language and You Don't Have Experience in Any Programming, You Should Start with a C Programming Language, Read: List of Format Specifiers in C.
Follow Me

0 Comments: