I am trying to make a boolean test so that if one of the tire pressures is below 35 or over 45 the system outputs \"bad inflation\".
In my class I must use a boolean, wh
you are initializing goodPressure to false, but then never assigning true, so it will always be false. Try initializing it to true.