Quick actions

cmd+k|ctrl+k

Navigation

Languages

Cast variables types

Snippet info

Language

Java

Visibility

public

Author

edmarfyelloww

Created

2020-03-12T20:11:27Z

Updated

2020-03-12T20:57:59Z

class Main {
    public static void main(String[] args) {
      //  System.out.println("Hello World!");
        
        byte byteNumber = 23;
        short shortNumb = 12;
        
        int intNumb = 12;
        
        int theSumbOfByteAndShort  = (int)(byteNumber + shortNumb );
        
        long longNumb = 50000 + 10L * theSumbOfByteAndShort + intNumb; 
        
        System.out.println("The  result  is : " + longNumb);
        
    }
}
INFO