0
Whats the output of code and why
int x=3; int y=1; if(x==y){ System.out.println("x=" + x); }
3 Answers
+ 15
No output ~_~
because the condition becomes false, or x!=y so the block of code inside if{} doesn't executes...
0
NO output.because 3 is not equal to 1