Java short: short is 16 bit signed type ranges from –32,768 to 32,767.
public class Main {
public static void main(String[] args) {
short s1 = 50;
short s2 = 42;
System.out.println("Value of short variable b1 is :" + s1);
System.out.println("Value of short variable b1 is :" + s2);
}
}
/*
Value of short variable b1 is :50
Value of short variable b1 is :42
*/
Related examples in the same category