Can someone help me on how to make a multiplication table loop in descent form. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 5

Can someone help me on how to make a multiplication table loop in descent form.

this is for a college project but I'm having difficulties

12th Mar 2018, 6:01 PM
Joel Antonio
Joel Antonio - avatar
2 Answers
+ 10
#include<iostream> using namespace std; int main() {     int num;    cout<<"Enter number to find multiplication table : ";    cin>>num;    for(int a=1;a<=10;a++)    cout<<num<<" * "<<a<<" = "<<num*a<<endl;     return 0; } well this will help
12th Mar 2018, 6:17 PM
GAWEN STEASY
GAWEN STEASY - avatar
0
thank you very much
12th Mar 2018, 6:28 PM
Joel Antonio
Joel Antonio - avatar