CPP
cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//countdown
#include <iostream>
using namespace std;
int main()
{
int n;
cin >> n;
while(n>=1)
{
cout<<n<<endl;
if(n%5==0)
cout<<"Beep"<<endl;
n--;
}
return 0;
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run