Java Tutorial - Learn Java Programming Language
Hello Guys 🤙 In our Previous Blog We covered the Basic Syntax of Java Programming Language. In today's Blog We will see How to Make Simple Java Program in Programming Language A Java Program to Swap The Values of Two Variables Using a Third variable Program - import java. io. *; import java.util.Scanner; class TwoValueSwap { public static void main(String args[ ]) { Scanner input = new Scanner(System.in); int a, b, temp; System.out.print("Enter Value of a = "); a = input.nextInt(); System.out.print("Enter Value of b = "); b = input.nextInt(); // swap the values using a temp variable temp = a; a = b; b = temp; // print th...