+ 1
C++ countdown correct output flagged as wrong. Plz help
12 Answers
+ 4
Beep
+ 2
Manav Roy
dyslexia = dysfunctional ability to parse lexicographical information
It is a known, but poorly-understood, reading disability that reportedly affects 20% of the population. It has no correlation to a person's intelligence, but can affect learning ability.
+ 2
Thanks. Just to confirm. The original problem was a misspelling of the word "beep". That has been resolved. Thx everyone
+ 2
jan there is nothing wrong with having one or more attributes of dyslexia
https://madebydyslexia.blog/2017/08/16/dyslexic-thinking-skills-explained/
+ 1
Thanks, but I don't get it. I've written Beeb. Isn't that the same
+ 1
Thanks for your help
+ 1
Manav Roy Yes, they are both consonants 😁
+ 1
Dyslexia?
jan look closely 🧐
b = 🙃
p = 🙂
+ 1
No worries. I am not really dyslexic, merely blind😅
0
Crap. Starting to think I am dyslexic
0
#include <iostream>
using namespace std;
int main() {
int n;
cin >> n;
int a =0;
int x =0;
while(a<n)
{
x = n-a;
if(x%5==0)
{
cout << x<< endl;
cout << "Beep" << endl;
}
else
{
cout << x<< endl;
}
a++;
}
//your code goes here
return 0;
}