+ 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
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
0
thank you very much