Q:

Java program to swap two numbers using function

belongs to collection: Java Basic Programs

0

Java program to swap two numbers using function

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Swap Two Numbers by function using Java Program

//Java program to swap two numbers using function.
 
import java.util.*;
 
class SwapTwoNumbersFunc
{
    int a,b;
    //function to swap two numbers
    public  void swap(SwapTwoNumbersFunc swp)
    {
        int temp;
        temp=swp.a;
        swp.a=swp.b;
        swp.b=temp;
    }
    public static void main(String s[])
    {
        SwapTwoNumbersFunc objSwp= new SwapTwoNumbersFunc();
        try
        {
            Scanner sc=new Scanner(System.in);
             
            System.out.print("Enter first  number: ");
            objSwp.a=sc.nextInt();
             
            System.out.print("Enter second number: ");
            objSwp.b=sc.nextInt();
             
            objSwp.swap(objSwp);
            System.out.println("After swapping  -a: " + objSwp.a + ", b: " + objSwp.b);
        }
        catch(Exception E)
        {
            System.out.println("Exception: " + E.toString());
        }
    }
}

Output

    Complie 	:	javac SwapTwoNumbersFunc.java
    Run		:	java SwapTwoNumbersFunc
    Output
    Enter first  number: 10 
    Enter second number: 20
    After swapping  -a: 20, b: 10 

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Java Basic Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Java program to check number is positive, negative... >>
<< Java program to convert given number of seconds to...