write a c++ program to print table of any number
Answers
Answered by
0
I think you should learn C++ from YouTube
Answered by
1
/* C++ Program - Print Table of Number */
#include
#include
void main()
{
clrscr();
int num, i, tab;
cout<<"Enter a number : ";
cin>>num;
cout<<"Table of "< for(i=1; i<=10; i++)
{
tab=num*i;
cout< }
getch();
}
#include
#include
void main()
{
clrscr();
int num, i, tab;
cout<<"Enter a number : ";
cin>>num;
cout<<"Table of "< for(i=1; i<=10; i++)
{
tab=num*i;
cout< }
getch();
}
Similar questions
Computer Science,
4 months ago
Math,
4 months ago
Computer Science,
4 months ago
English,
8 months ago
English,
8 months ago
Chemistry,
11 months ago
Chemistry,
11 months ago