Followers

Saturday, 9 March 2013

TABLES PROGRAM IN C LANGUAGE


TABLES PROGRAM IN C LANGUAGE



#include<iostream.h>
#include<conio.h>
void main()
{
int n;
clrscr();
cout<<”ENTER THE TABLE’S  NUMBER YOU NEED”<<endl;
cin>>n;
for(int i=1;i<=10;i++)
{
cout<<n <<”x”<<i <<”=” <<n*i<<”\n”;
}
getch();
}


                                                       BY:KSP

No comments:

Post a Comment