Answered step by step
Verified Expert Solution
Question
1 Approved Answer
To round off the integer i to the next largest even multiple of another integer j, the formula next_multiple - i + j - i
To round off the integer i to the next largest even multiple of another integer j, the formula next_multiple - i + j - i % j can be used
In example, to round off 256 days to the next largest number of days evenly divisible by a week, values of i = 256 and j = 7 can be substituted into the preceding formula as follows:
next_multiple = 256 + 7 - 256 % 7
= 256 + 7 - 4
= 259
Write a program in JavaScript to find the next largest even multiple for the following values of i and j:
i | j |
365 | 7 |
12.258 | 23 |
996 | 4 |
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started