I am trying to make a program that determines whether a statement is true or false
I have this so far:
public static void main(String[] args)
{
int w=2,x=3,y=4,z=5;
boolean expression;
expression = (w<=x)&&(z>=y);
if(expression == true);
System.out.println("true");
if(expression == false);
System.out.println("false");
}
...but all it prints out is true and false
any help?