write a c++ programme to find multiplication table of any number using while loop
Answers
Answered by
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
Geography,
1 month ago
Geography,
1 month ago
Accountancy,
1 month ago
Economy,
2 months ago
Computer Science,
9 months ago
Science,
9 months ago
Math,
9 months ago