Countdown code | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 3

Countdown code

Perfect question and perfect answer...! https://code.sololearn.com/coR0Y0JA4V5Q/?ref=app

20th May 2021, 12:19 PM
Gokul Darsi
Gokul Darsi - avatar
2 Answers
- 1
What about that code? It works, so do you have any problems?
20th May 2021, 12:41 PM
Michal Doruch
- 1
Check for the constraints b in beep should be in lowercase. So #include <iostream> using namespace std; int main() { int n; cin >> n; //your code goes here do{ cout << n << endl; if ((n % 5) == 0){ cout << "beep" << endl; } n--; } while (n >= 1); return 0; }
20th May 2021, 12:43 PM
Aditya
Aditya - avatar