+ 1
Gotham City( test case 3 and 4 failed )
Most of my solutions failed in test case 3& 4 Can anyone help me with that My Code : #include <iostream> using namespace std; int main() { int a; cin>> a; if(a<5 && a>=0){ cout<<"I got this!"; } else if (a>=5 && a<=10){ cout<<"Help me Batman"; } else cout<<"Good luck out there"; return 0; }
4 Answers
+ 2
Last case should be:
'Good Luck out there!'
Upper Case "L" in Luck and a "!" at the end.
+ 2
I have answer, but in Python đ
+ 1
Thomas
LoL , I am blind
Thanks đ
0
Your welcome.
And by the way, your return statement is not the best.
The caller will only get the return 0 for the last case.
Maybe it would better to put a return 0 after each case. But this is not "my" languages.