Q:

Write a Java program that accepts four integer from the user and prints equal if all four are equal, and not equal otherwise.

0

Write a Java program that accepts four integer from the user and prints equal if all four are equal, and not equal otherwise.

All Answers

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

Code:

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!

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

total answers (1)

Similar questions


need a help?


find thousands of online teachers now