For each call of the method below, display the value that is returned public int retVal(int a, int b) {     int c;     if (a > b) {         c = a;     } else if (b % a == 0) {         c = b;     } else {         c = b + (a - (b % a));     }     return c; }   Read the following arguments from the keyboard and pass them to retVal() Arguments passed                                    retVal(4, 2) retVal(5, 4) retVal(5, 13) retVal(x, y) retVal(m, n)   Output 4 5 15 20 8 For d and e what values are passed to produce 20 and 8?

Microsoft Visual C#
7th Edition
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Joyce, Farrell.
Chapter7: Using Methods
Section: Chapter Questions
Problem 15RQ
icon
Related questions
Question

For each call of the method below, display the value that is returned

public int retVal(int a, int b) {

    int c;

    if (a > b) {

        c = a;

    } else if (b % a == 0) {

        c = b;

    } else {

        c = b + (a - (b % a));

    }

    return c;

}

 

Read the following arguments from the keyboard and pass them to retVal()

Arguments passed                                   

  1. retVal(4, 2)
  2. retVal(5, 4)
  3. retVal(5, 13)
  4. retVal(x, y)
  5. retVal(m, n)

 

Output

  1. 4
  2. 5
  3. 15
  4. 20
  5. 8

For d and e what values are passed to produce 20 and 8?

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 6 steps with 4 images

Blurred answer
Knowledge Booster
void method
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
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,