Monday 21, May 2012
Welcome Guest, Register | Login  
      Home    |    Tutorials    |    Free Ebooks    |    Free Scripts    |    Articles    |    Blog     |    About Us    |    Contact Us

  program to display table of digit entered by the user

Here is a program to display table of digit entered by the user using c++.
Cut & Paste Script
#include<iostream.h>
void main()
{
    float a;
    int i;
    cout<<"Enter a number : ";
    cin>>a;
    for(i=1; i<=10; i++){
        cout<< a<<" * "<< i<<" ="<< a * i<<endl;
    }
}
Output:
Enter a number : 21
21 * 1 =21
21 * 2 =42
21 * 3 =63
21 * 4 =84
21 * 5 =105
21 * 6 =126
21 * 7 =147
21 * 8 =168
21 * 9 =189
21 * 10 =210
 
   
     RELATED SCRIPTS
 
Sorting all characters of a string using c++
This program will sort all characters of a string....more »
Category : C++ Programs Hits : 314
   
printing date of birth using structures in c++
printing date of birth using structures in c language....more »
Category : C++ Programs Hits : 642
   
Program to display pyramid of numbers using c++
Here is a c++ program example to show a pyramid of numbers....more »
Category : C++ Programs Hits : 1517
   
finding nth power of any number using c++
Here is a c++ program example to find nth power of any number entered by the user. Number and power to be entered by the user....more »
Category : C++ Programs Hits : 843
   
Program to shows size of data types used in C++
Here is a c++ program example to show the size of data types used in c++....more »
Category : C++ Programs Hits : 301
   
   
SCRIPT CATEGORIES
 
  C Programs
C Programs scripts
  C++ Programs
C++ Programs scripts
  Java Programs
Java Programs scripts
  JavaScript Examples
JavaScript Examples scripts
  PHP Examples
PHP Examples scripts
  VBScript Examples
VBScript Examples scripts
 
 
 
POPULAR E-BOOKS
 
Download Developing Web Applications with Ant  Ebook Developing Web Applications with Ant
   
Download Prospecting and the Sales Pitch Ebook Prospecting and the Sales Pitch
   
Download Data Structures and Algorithms with Object-Oriented Design Patterns in C++  Ebook Data Structures and Algorithms with Object-Oriented Design Patterns in C++
   
Download GoogleSecrets TipsandTricks Ebook GoogleSecrets TipsandTricks
   
Download Essentials of the Java Programming Language: A Hands-On Guide  Ebook Essentials of the Java Programming Language: A Hands-On Guide
   
 
Studiesinn.com © 2012 All Rights Reserved.
Website Designed & Developed by TechXprtz