Tuesday 29 October 2013

C++ Program to print table of any number

#include<iostream.h>
#include<conio.h>

void main()
{
clrscr();
int i,n;
cout<<"Enter Number to Find Its Multiplication Table :";
cin>>n;
cout<<"\n\n";

for(i=1;i<=10;++i)
cout<<"\t"<<n<<"*"<<i<<"="<<n*i<<"\n";
getch();
}


 If u want more programs or any help contact me on Facebook , i will be happy if i could help u...  

Click on the name below :-
***** Nilov Manna *****

No comments:

Post a Comment