Question: add the missing code: Define a method calcNum ( ) that takes two integer parameters and returns the result of adding the first parameter to

add the missing code: Define a method calcNum() that takes two integer parameters and returns the result of adding the first parameter to the product of 4 and the second parameter.
Ex: If the input is 38, then the output is:
35 import java.util.Scanner;
public class NumberCalculator {
public static void main(String[] args){
Scanner scnr = new Scanner(System.in);
int input1;
int input2;
int result;
input1= scnr.nextInt();
input2= scnr.nextInt();
result = calcNum(input1, input2);
System.out.println(result);
}
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!