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

  swaping two numbers entered by user using c++

A program for swaping two numbers entered by user using c++.
Cut & Paste Script
#include<iostream.h>
int main()
{
    float a,b,c;
    cout<<" Enter the first no. :  ";
    cin>>a;
    cout<<" Enter the second no. :  ";
    cin>>b;
    c = a;
    a = b;
    b = c;
    cout<<endl;
    cout<<" Now the value of first = "<<a<<endl;
    cout<<" Now the value of second = "<<b<<endl;
    return 0;
}

Output:
Enter the first no. :  14
Enter the second no. :  11

Now the value of first = 11
Now the value of second = 14
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
   
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 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 : 789
   
program to print a rectangle of "*"
The following program forms a rectangle of "*"
(Length and width of rectangle entered by user)...more »
Category : C++ Programs Hits : 991
   
Sorting numbers using selection sort in c++
Here is a program example to read a list of integer numbers from keybord and prints them in sorted order. This program is using selection sort to order the integers....more »
Category : C++ Programs Hits : 1492
   
   
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 E books Profit Pulling Powerhouse  Ebook E books Profit Pulling Powerhouse
   
Download PHP 5 Power Programming  Ebook PHP 5 Power Programming
   
Download Freelancing for Fun and Profit Ebook Freelancing for Fun and Profit
   
Download Art of Programming Contest  Ebook Art of Programming Contest
   
Download Yahoo Answers Traffic Guide Ebook Yahoo Answers Traffic Guide
   
 
Studiesinn.com © 2012 All Rights Reserved.
Website Designed & Developed by TechXprtz