yashwant k
4
Q:

if and in java

if statement executes a set of statements if condition is true.

Syntax:

if(condition)
{
   // if condition is true;
}
3
if(x == 1 && y == 2){
  println("x = 1 and y = 2");
}
3
int x = 3;

if (x<=3){
	System.out.println("Hello World");
}

else {
	System.out.println("Bye World");
}
1
int x = 3;

if (x == 3) {
  // block of code to be executed if the condition is true
}
8

New to Communities?

Join the community