A program to find table of any number

#include<iostream.h>

#include<conio.h>

void main()
{
clrscr();

int  i,n;

Cout<<"enter a number to find table ";

cin>>n;

for( i =1; i <=10  ; i++  )
{  cout<<n*i<<endl;}

getch ();

}

Comments

Post a Comment

Popular Posts