Question: java Define a method findPriority() that takes one integer parameter as the project tasks to be completed, and returns the project's priority as an integer.
java
Define a method findPriority() that takes one integer parameter as the project tasks to be completed, and returns the project's priority as an integer. The project's priority is returned as follows: If a task's count is at least 85, priority is 3. If a task's count is more than 30 and less than 85, priority is 2. Otherwise, priority is 1. Ex: If the input is 90, then the output is: 3
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
