Question: Define a method calcVal() that takes one integer parameter and returns the parameter minus 5. Ex: If the input is 3 , then the output

Define a method calcVal() that takes one integer parameter and returns the parameter minus 5. Ex: If the input is 3 , then the output is: 2 \begin{tabular}{r|r} 1 & import java.util. Scanner; \\ 2 & \\ 3 & public class ValueCalculator \{ \\ 4 & \\ 5 & / Your code goes here \\ 6 & \\ 7 & public static void main(String[] args) \{ \\ 8 & Scanner scnr = new Scanner(System.in); \\ 9 & int input; \\ 10 & int result; \\ 11 & \\ 12 & input = scnr.nextInt(); \\ 13 & \\ 14 & result = calcVal(input); \\ 15 & \end{tabular}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
