import java.util.Scanner;
public class Solution {
public static void main(String[] args) {
Scanner in = new Scanner(System.in);
System.out.print("Input first number: ");
int num1 = in.nextInt();
System.out.print("Input second number: ");
int num2 = in.nextInt();
System.out.print("Input third number: ");
int num3 = in.nextInt();
System.out.print("Input fourth number: ");
int num4 = in.nextInt();
if (num1 == num2 && num2 == num3 && num3 == num4)
{
System.out.println("Numbers are equal.");
}
else
{
System.out.println("Numbers are not equal!");
}
Output:
Input first number: 25
Input second number: 37
Input third number: 45
Input fourth number: 23
Numbers are not equal!
Code:
Output:
need an explanation for this answer? contact us directly to get an explanation for this answer