Apply Now :

Table of Multiply 15 No.

Monday, 12 December 2011

// C++ Program => Table of Multiply 15 No.
// Calibre IT & Management Institute
// [ Krishna suman ]


#include <iostream.h>
#include <conio.h>
int main()
{
clrscr();
int x;
cout << "Enter an integer less than 2185 : ";
cin>>x;
cout << "The first 15 multiples of " << x << " are : ";
for(int y=1;y<16;y++)
cout << "\n" << x << "x" << y << "=" << x*y;
getch();
return 0;
}




Share this Article on :

No comments:

Post a Comment