What is wrong?
I can't seem to understand this. I've been fiddling for hours and I can't seem to get it. It's really frustrating because it looks like it should work 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 age = 17; if (age > 14){ if (age>18){ Console.Writeline("adult"); } else{ Console.WriteLine("teen"); } } else{ if(age>0){ Console.Writeline("child"); } else{ Console.WriteLine("what the hell"); } } } } } }