Saturday, 18 August 2012

u can boost to k.g kids that u can create multiplication of any number on computer


#include<iostream>
#include<conio.h>
using namespace std;
void main()
{
int i=1,j,n,a,b,c,d;
cout<<"enter the  digit whoes table is to be calculated";
cin>>n;
do
{
a=n*i;
cout<<a;
cout<<"\n";
i++;
}while(i<=10);
getch();
}

No comments:

Post a Comment