Answer to Question #309249 in Java | JSP | JSF for Ohh

Question #309249

4. Write a program (without using an array) that accepts three numbers from the user and prints "increasing" if the numbers are in increasing order, "decreasing" if the numbers are in decreasing order, and "Neither increasing or decreasing order" otherwise.



Example: Input first number: 1524


Input second number: 2345


Input third number: 3321



Expected Output :



Increasing order



1
Expert's answer
2022-03-10T18:07:30-0500


import java.util.*;


class App {


	public static void main(String[] args) {


		Scanner keyboard = new Scanner(System.in);
		System.out.print("Input first number: ");
		int number1 = keyboard.nextInt();
		System.out.print("Input second number: ");
		int number2 = keyboard.nextInt();
		System.out.print("Input third number: ");
		int number3 = keyboard.nextInt();


		if (number2 > number1 && number3 > number2) {
			System.out.println("Increasing order");
		} else if (number2 < number1 && number3 < number2) {
			System.out.println("Decreasing order");
		} else {
			System.out.println("Neither increasing or decreasing order");
		}


		keyboard.close();
	}


}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS