import java.io.*; class shorttofloat { public static void main(String[] args) { try { // Reads the value from console BufferedReader buffreader = new BufferedReader( new InputStreamReader(System.in)); System.out .println("---Data Conversion from short type to float type---"); System.out.println("Enter short type value: "); // Read short type data short myshort = Short.parseShort(buffreader.readLine()); // Convert short type data to float type float myfloat = myshort; System.out .println("Converted value from short type to float type is : " + myfloat); } catch (Exception e) { System.out.println(" Error " + e); } } }