Cheer Creator Problem
My code in C# does not seem to bypass Test Case Number 4. Please find the code below : -_-_-_-_-_-_-_-_-_-_-_-_--_-_-_-_ using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SoloLearn { class Program { static void Main(string[] args) { int yards; yards=Convert.ToInt32(Console.ReadLine()); if(yards > 10) { Console.WriteLine("High Five"); } else if(yards < 1) { Console.WriteLine("shh"); } for(int i=1;i<=yards;i++) { if(yards > 1 && yards <10) { Console.WriteLine("Ra!"); } } } } }