-
Notifications
You must be signed in to change notification settings - Fork 48
Open
Description
public class SwapNumbers
{
public static void main(String[] args)
{
float first = 1.20f, second = 2.45f;
System.out.println("--Before swap--");
System.out.print("First number = " + first); //Semi-colon added
System.out.println("Second number = " + second);
// Value of first is assigned to temporary
float temporary = first;
// Value of second is assigned to first
first = second; //Semi-colon added
// Value of temporary (which contains the initial value of first) is assigned to second
second = temporary; //Removed the + symbol
System.out.println("--After swap--");
System.out.println("First number = " + first);
System.out.println("Second number = " + second);
}
}
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels