Computer Science, asked by devenkale4930, 1 day ago

write a c++ programme to find multiplication table of any number using while loop

Answers

Answered by jeromeseejo73
0

Answer:

#include<iostream>  

using namespace std;  

int main()  

{  

int num;

cout<<"Enter Number To Find Multiplication table ";  

cin>>num;

int a=1;

while(a<=10)

 {  

       cout<<num<<" * "<<a<<" = "<<num*a<<endl;

       a++;

}

 return 0;

}

Similar questions