Quick actions

cmd+k|ctrl+k

Navigation

Languages

java-if-else-switch4

Snippet info

Language

Java

Visibility

public

Author

w3xue

Created

2023-01-06T08:00:02.644966Z

Updated

2023-01-06T08:00:02.644966Z

public class Test {
 
   public static void main(String args[]){
      int x = 30;
      int y = 10;
 
      if( x == 30 ){
         if( y == 10 ){
             System.out.print("X = 30 and Y = 10");
          }
       }
    }
}
INFO