Cheer Creator | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

Cheer Creator

#include<stdio.h> int main() { int n,i; scanf("%d",&n); if(n>0 && n<10) { for(i=1;i<=n;i++) printf("Ra!"); } else if(n>=10) { printf("High Five"); } else { printf("shh"); } return 0; } It passed Test Cases 1-2-3-5 but not 4th one what's wrong in this code please tell me Thank you in Advance!

28th May 2020, 5:07 PM
Ambuj Singh
Ambuj Singh - avatar
1 Answer
+ 3
"...if they move forward 10 yards or less, you say 'Ra!'..." But in your code if they move exactly 10 yards you are printing "High Five".
28th May 2020, 5:27 PM
Kevin ★