Examlex

Solved

If(firstValue == SecondValue)

question 32

Essay

if(firstValue == secondValue)
{
    int total = firstValue + secondVaue;
    System.out.println("The values are equal");
}
System.out.println("The total is " + total);
Why will the above println() statement cause an error?


Definitions:

Related Questions