Subscribe to Feeds

Send Your COMPLETED Projects To georgepj@hotmail.com

We'll Publish It With Your Name :-)

Programs Can Also Be Downloaded From The Folders Below....[Or Scroll Down]

Multiplication Table

Click Here To Download C++ File Of This Program

 //prg for mult table till 10  
//Downloaded From www.c4cpp.co.nr. (C)2009.All rights reserved.
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int i,n,a;
cout<<"Enter the no upto which u want table"<<endl;
cin>>a;
for(i=1;i<=10;i++)
cout<<i<<"x"<<a<<"="<<a*i<<endl;
getch();
}

No comments: