Assume that a bool variable workedOvertime has been declared , and that an int variable hoursWorked has been declared and initialized . Write a statement that assigns the value true if hoursWorked is greater than 40 and false otherwise.

LANGUAGE: C++

CHALLENGE:

Assume  that a bool variable  workedOvertime has been declared , and that an int  variable  hoursWorked has been declared  and initialized . Write a statement  that assigns  the value  true  if hoursWorked is greater than  40 and false  otherwise.

SOLUTION:

if (hoursWorked > 40){
 workedOvertime = true;
}else{
 workedOvertime = false;
}