int age = 35;
if(age >= 30)
{
if(age < 40)
{
Debug.Log("Age is in the thirties!");
}
}
int age = 35;
if(age >= 30 && age < 40)
{
Debug.Log("Age is in the thirties!");
}
int age = 35;
if(age >= 30)
{
if(age < 40)
{
Debug.Log("Age is in the thirties!");
}
}
int age = 35;
if(age >= 30 && age < 40)
{
Debug.Log("Age is in the thirties!");
}