Question: I need this quick Please. In Java, The examples are what the outputs should result in. Problem 1: Write a program that asks the users
I need this quick Please.
In Java,

The examples are what the outputs should result in.
Problem 1: Write a program that asks the users for three numbers and prints: - "increasing" if they are in increasing order - "decreasing" if they are in decreasing order - "neither increasing nor decreasing" otherwise Here, "increasing" means "strictly increasing", with each value larger than its predecessor. (So if the three numbers were 4, 4, 10 this would not be considered increasing). The same goes with "decreasing", which means "strictly decreasing". Example 1: Enter the first number: 4 Enter the second number: 8 Enter the third number: 12 The numbers are increasing Example 2: Enter the first number: 1 Enter the second number: 4 Enter the third number: 4 The numbers are neither increasing nor decreasing Example 3: Enter the first number: 10 Enter the second number: 8 Enter the third number: 2 The numbers are decreasing
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
