Help me please to find the error in this code coach. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Help me please to find the error in this code coach.

https://www.sololearn.com/coach/20?ref=app

13th Apr 2020, 8:44 PM
Amal Gil
Amal Gil - avatar
6 Answers
+ 1
Check it please 1/5 failed.
13th Apr 2020, 9:54 PM
Amal Gil
Amal Gil - avatar
0
Use this in your code::: if(n<1) printf("shh"); else if(n<=10) for(int i=0;i<n;i++) printf("Ra!"); else printf("High Five");
13th Apr 2020, 9:27 PM
Amine Laaboudi
Amine Laaboudi - avatar
0
Use the dsudo code ☝ /* change n by yard in your code*/
13th Apr 2020, 9:57 PM
Amine Laaboudi
Amine Laaboudi - avatar
0
Okay maybe I see you mean,I'll try thanks
13th Apr 2020, 10:04 PM
Amal Gil
Amal Gil - avatar
0
N=int(input()) if N>10: print('High Five') elif N<1: print('shh') else: print('Ra!'*N) #Its in python
15th Apr 2020, 10:24 AM
Nks
Nks - avatar