Problem in code coach
https://www.sololearn.com/coach/22?ref=app Why don't solve all cases? (copy-paste) 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) { uint pintures = Convert.ToUInt32( Console.ReadLine() ); if ( pintures > 0) { uint subtotal = pintures * 5 + 40; float tax = subtotal * 10 / 100; uint total = subtotal + Convert.ToUInt32( Math.Round( tax ) ); Console.WriteLine( total ); } else if ( pintures == 0) Console.WriteLine( 0 ); } } }