Please help me!! | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

Please help me!!

You need to make a countdown app. Given a number N as input, output numbers from N to 1 on separate lines. Also, when the current countdown number is a multiple of 5, the app should output "Beep". Sample Input: 12 Sample Output: 12 11 10 Beep 9 8 7 6 5 Beep 4 3 2 1

3rd Dec 2020, 5:58 PM
sheraz jan
sheraz jan - avatar
3 Answers
+ 1
sheraz jan Just start the loop in reverse order and check if num % 5 == 0 then print "Beep" Just after the number.
3rd Dec 2020, 6:10 PM
A͢J
A͢J - avatar
0
What is your code, and what is it doing wrong?
3rd Dec 2020, 6:01 PM
Taco Tube
Taco Tube - avatar
- 1
If num % 5 == 0 cout<<"Beep"<<endl num--
3rd Dec 2020, 6:31 PM
Abdul Lee🎌🇳🇬
Abdul Lee🎌🇳🇬 - avatar