C++ program – Multiplication Table

by Nideesh C on May 1, 2011 · 0 comments

in C++




/* program for multiplication table till 10 */
 #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();
 }  



Not Satisfied ? Just search & get the result

Related Posts Plugin for WordPress, Blogger...
Be Sociable, Share!

Related posts:

  1. Java program – BST symbol table
  2. C++ program to implement Hash Table
  3. How to monitor switch activity and its performance with LED Light
  4. Sample program (multiplication using addition)
  5. C++ program – multiply two numbers without using multiplication operator

Leave a Comment

Previous post:

Next post: