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

  Program to separate and reverse the 5-digit number

Here is a c++ program example to separate and reverse the 5-digit number entered by the user.
Cut & Paste Script
#include<iostream.h>
void main()
{
    int n,n1,n2,n3,n4,n5;
    cout<<" Enter the 5-digit number :  ";
    cin>>n;
    if(n<0 || n>99999)
        cout<<"!!! Invalid Number !!!"<<endl;
    else
    {
        n5 = n % 10;// fifth digit
        n = n / 10;
        n4 = n % 10;// fourth digit
        n = n / 10;
        n3 = n % 10;// third digit
        n = n / 10;
        n2 = n % 10;// second digit
        n1 = n /10;//  first digit
        cout<< n1 <<"\t"<<n2<<"\t"<<n3<<"\t"<<n4<<"\t"<<n5<<endl;
        cout<<" The number in reverse order is :  ";
        cout<<n5<<n4<<n3<<n2<<n1<<endl;
    }
}

Output:
Enter the 5-digit number : 91467
9       1       4       6       7
 The number in reverse order is : 76419
Press any key to continue
 
   
     RELATED SCRIPTS
 
Number guess game using c++
Here is a simple number guess game program written in c++. User will enter his guess and program will match this number with a random generated number and prints the results on screen....more »
Category : C++ Programs Hits : 665
   
Structures in c++ example code
An example code for structures in c language....more »
Category : C++ Programs Hits : 762
   
program to show the greatest and smallest number from the given numbers
Program to show the greatest and smallest number from the given numbers using c++. If statement is used in this program....more »
Category : C++ Programs Hits : 790
   
Sorting all characters of a string using c++
This program will sort all characters of a string....more »
Category : C++ Programs Hits : 314
   
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++....more »
Category : C++ Programs Hits : 679
   
   
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 Video Marketing Tactics Using Ebook Video Marketing Tactics Using
   
Download How To Design Programs: An Introduction To Programming and Computing  Ebook How To Design Programs: An Introduction To Programming and Computing
   
Download Online Freelancing Success  Ebook Online Freelancing Success
   
Download Advanced Programming for the Java 2 Platform  Ebook Advanced Programming for the Java 2 Platform
   
Download Market Yourself Professionally  Ebook Market Yourself Professionally
   
 
Studiesinn.com © 2012 All Rights Reserved.
Website Designed & Developed by TechXprtz