Write an If- Then statement that sets the variable hours to
10 when the flag variable minimum is set.
Write an If- Then statement that sets the variable hours to
10 when the flag variable minimum is set.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
VulpesPosted Nov 8, 2014, 7:06 AM
if (minimum) hours = 10;
or in VB.NET
If minimum Then
hours = 10
End If