Define a method calcNum() that takes two integer parameters and returns the product of the two parameters plus 4. Ex: If the input is 3 9, then the output is: 31 import java.util.Scanner; public class NumberCalculator {    /* Your code goes here */    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);   }}

Programming Logic & Design Comprehensive
9th Edition
ISBN:9781337669405
Author:FARRELL
Publisher:FARRELL
Chapter9: Advanced Modularization Techniques
Section: Chapter Questions
Problem 13RQ
icon
Related questions
Question

Define a method calcNum() that takes two integer parameters and returns the product of the two parameters plus 4.

Ex: If the input is 3 9, then the output is:

31

import java.util.Scanner;

public class NumberCalculator {

   /* Your code goes here */

   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);
   }
}

AI-Generated Solution
AI-generated content may present inaccurate or offensive content that does not represent bartleby’s views.
steps

Unlock instant AI solutions

Tap the button
to generate a solution

Knowledge Booster
Adjacency Matrix
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
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage