0
Help me please to find the error in this code coach.
8 Respuestas
+ 1
Check it please
1/5 failed.
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");
0
Use the dsudo code ☝
/* change n by yard in your code*/
0
Okay maybe I see you mean,I'll try thanks
0
N=int(input())
if N>10:
print('High Five')
elif N<1:
print('shh')
else:
print('Ra!'*N)
#Its in python