Use Java) Part 1: Given an integer input between 1 – 100 captured from a user perform the following conditional actions:​  -  If is odd, print ​ODD -  If is even and in the inclusive range of 2 to 5 , print ​EVEN1 -  If is even and in the inclusive range of 6 to 20, print ​EVEN2 -  If is even and greater than 20, print ​EVEN3 -  Validate your algorithm works for all cases

C++ for Engineers and Scientists
4th Edition
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Bronson, Gary J.
Chapter5: Repetition Statements
Section5.5: A Closer Look: Loop Programming Techniques
Problem 14E
icon
Related questions
Question

(Use Java)

Part 1:

Given an integer input between 1 – 100 captured from a user perform the following conditional actions:​ 

-  If is odd, print ​ODD

-  If is even and in the inclusive range of 2 to 5 , print ​EVEN1

-  If is even and in the inclusive range of 6 to 20, print ​EVEN2

-  If is even and greater than 20, print ​EVEN3

-  Validate your algorithm works for all cases

 

Part 2:

Read an integer input from the user and save it to a variable ​'size'​-  Use the variable ​'size' ​to initialize an array of length size

-  Next read in integer inputs from the user and save each incoming integer to the next

available position in your array.

-  Continue until your array is full.

-  Note: You will need to conditionally check if you have received the number of inputs

you need from the user to fill the array.

-  Print the contents of the full array.

Expert Solution
steps

Step by step

Solved in 4 steps with 5 images

Blurred answer
Knowledge Booster
Literals
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr