- 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
3 Respostas
+ 1
sheraz jan
Just start the loop in reverse order and check if num % 5 == 0 then print "Beep" Just after the number.
0
What is your code, and what is it doing wrong?
- 1
If num % 5 == 0
cout<<"Beep"<<endl
num--