Question: The following Java if-then-else expression is very poorly constructed because there is no true-part. Rewrite the expression into an equivalent if-then expression (you are not
The following Java if-then-else expression is very poorly constructed because there is no true-part. Rewrite the expression into an equivalent if-then expression (you are not allowed to change what the output says).
if ( a <= b)
{
}
else
{
System.out.println(a is not less than or equal to b);
}
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
