1. 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 a. retVal(4, 2) b. retVal(5, 4) c. retVal(5, 13) d. retVal(x, y) e. retVal(m, n) Output a. 4 b. 5 c. 15 d. 20 e. 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 17RQ
icon
Related questions
Question

1. 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

a. retVal(4, 2)

b. retVal(5, 4)

c. retVal(5, 13)

d. retVal(x, y)

e. retVal(m, n)

Output

a. 4

b. 5

c. 15

d. 20

e. 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 3 steps with 2 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,
Programming Logic & Design Comprehensive
Programming Logic & Design Comprehensive
Computer Science
ISBN:
9781337669405
Author:
FARRELL
Publisher:
Cengage
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT