Quick actions

cmd+k|ctrl+k

Navigation

Languages

java-number1

Snippet info

Language

Java

Visibility

public

Author

w3xue

Created

2023-01-06T08:04:53.146883Z

Updated

2023-01-06T08:04:53.146883Z

public class Test{
 
   public static void main(String args[]){
      Integer x = 5;
      x =  x + 10;
      System.out.println(x); 
   }
}
INFO