Skee Ball in C# test case #3
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 score = Convert.ToInt32(Console.ReadLine()); int price = Convert.ToInt32(Console.ReadLine()); if (score == 0 || price == 0) { Console.WriteLine("Try again"); } else if (score / price >= 12) { Console.WriteLine("Buy it!"); } else { Console.WriteLine("Try again"); } } } } Why is case 3 failing? I can't see the input because I'm not a pro user. I thought it would have been inputting 0.