+ 1
Could you say why it doesn't work?
Console.WriteLine("vamos a evaluar si puedes conducir un coche. ¿Qué edad tienes?"); int edad = Int32.Parse(Console.ReadLine()); bool carnet; if(edad>=18) carnet = true; if (carnet==true) Console.WriteLine("Tienes edad suficiente para conducir"); else Console.WriteLine("Lo siento, no tienes edad para conducir");
3 odpowiedzi
+ 2
Initialize <carnet>
bool carnet = false;
Or you can opt to initialize with condition
bool carnet = (edad >= 18);
+ 2
I Understand now. It allways make sense! XD
Thanks both!