#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int a,b;
cout<<"Enter the no.";
cin>>a;
for (int i=1;i<=10;i++)
{ b=a*i;
cout<<b<<"\n";
}
getch();
}
#include<conio.h>
void main()
{
clrscr();
int a,b;
cout<<"Enter the no.";
cin>>a;
for (int i=1;i<=10;i++)
{ b=a*i;
cout<<b<<"\n";
}
getch();
}
No comments:
Post a Comment