Type a program to print any table upto 10 .
Using C++ language!!!
Don't spam
Answers
Answered by
3
Answer:
C++ Program to Print Table of Any Number:-
using namespace std;
int main()
int i,n;
cout<<"Enter any number:";
cin>>n;
for(i=1;i<=10;++i)
cout<<"\n"<<n<<" * "<<i<<" = "<<n*i;
return 0;
Mark me as brainlist!!!
Answered by
2
refer this atterment .
it is help you .
Attachments:
Similar questions