Introduction
Here is the source code for Main.java
Source
public class Main {
public static void main(String[] args) {
short shortNum = 100;
Short ShortValue = Short.valueOf(shortNum);
System.out.println("Short object representing " + "the specified short value = " + ShortValue);
}
}