+ 1
What is after x<=
i cant figure this out
3 Respostas
+ 1
There should be one more variable or value to compare with x like x <= y
anyways according to my example it means is
x less than(<) or equal(=)to y
0
ok thx
0
Class Lessthanequal
{
Public static void main (String args[]) {
int x=50;
int y=30;
If(x<=y)
{
System.out.println("the x less than y") ;
}
System.out.println("it the results") ;
} }