I'm having problems with my boolean code, can anyone help me?
public bool EhAprovado()
{
if (_mediafinal > 7 && _quantidadefaltas < 15)
{
return true;
}
}
I'm having problems with my boolean code, can anyone help me?
public bool EhAprovado()
{
if (_mediafinal > 7 && _quantidadefaltas < 15)
{
return true;
}
}
all return method need to return thing so If you create bool method need to return result for else Like this :
public bool EhAprovado()
{
if (_mediafinal > 7 && _quantidadefaltas < 15)
return true;
else
return false;
}
I hope it help you