0
If ( age >14){if (age >=18) why is this double if statement is used?
3 ответов
0
If ( age >14)
{
if (age >=18)
{
//something
}
else
{
//person is older then 14 but not 18 yet
}
}
0
to include the age of 18 also
0
to include the age of 18 also