Answer to Question #309529 in Java | JSP | JSF for Kyle

Question #309529

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-18T03:19:10-0400


import java.util.*;


class App {


	public static void main(String[] args) {


		Scanner keyboard = new Scanner(System.in);
		System.out.print("Input first number: ");
		int n1 = keyboard.nextInt();
		System.out.print("Input second number: ");
		int n2 = keyboard.nextInt();
		System.out.print("Input third number: ");
		int n3 = keyboard.nextInt();


		if (n2 > n1 && n3 > n2) {
			System.out.println("Increasing order");
		} else if (n2 < n1 && n3 < n2) {
			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