0
Airlines are offering a special promotion for teenagers and are offering kindles to use during the flight. Write a program to ta
Test Case 2 with input of 24 is wrong. My attempt; if (age<=19); Console.WriteLine("Take your kindle");
2 Respuestas
+ 3
if (age<=19) // without semicolon
0
if (age <= 19 )
{
Console.WriteLine("Take your kindle");
}