Math help? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Math help?

What is the math steps required to solve this problem? ⬇️⬇️⬇️ "Volunteers have been divided into 5 groups with equal number of members. If any group has fewer than 5 people, more volunteers must be recruited to fill the empty spots. Write a program that takes the number of volunteers and outputs to the console how many volunteers need to be hired to have 5 equal groups. Sample Input 24 Sample Output 1 Explanation The nearest number to 24 that is multiple of 5 is 25, so we need 1 more volunteer (24+1=25) to get 5 equal groups."

21st May 2021, 11:39 PM
Doriiion
Doriiion - avatar
1 Answer
+ 2
hired = 5 - ( volunteers % 5 )
21st May 2021, 11:43 PM
visph
visph - avatar