my program doesnt seem following my if statement condition, i have || and && in my statement... is there a better way to do this??thanks
this just an example of my code...
else if (age>19&&bmires2>=18.50||bmires2<=25.00)
{messagebox.show("normal weight");
}
else if (age<19&&bmires2<18.50||bmires2>13.25)
{ messagebox.show("underweight");
}