❔ i am trying to combine methods with public static void main and its faling horibly
.
/close public class Program
{
public static bool check(int age)
{
if (age <= 18 && age >= 15)
{
return true;
}
else
{
return false;
}
}
}
public static void main(int age, int hours, int c = 0)
{
}
}