Conversion from short to long


 

Conversion from short to long

In this tutorial we will learn how to convert a short type data to long type.

In this tutorial we will learn how to convert a short type data to long type.

Conversion from short to long:

In this tutorial we will learn how to convert a short type data to long type.

Description:

This program will take a short type value from console and provides a conversion to long type. The line short myshort = Short.parseShort(buffreader.readLine()); reads the short type data from console. The line long mylong = (long)(myshort); is used to convert the myshort short type data to mylong long type data.

Code:

import java.io.*;

class shorttolong {
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 long type---");
System.out.println("Enter short type value: ");
// Read short type data
short myshort = Short.parseShort(buffreader.readLine());
// Convert short type data to long type
long mylong = (long) (myshort);
System.out.println("Converted value from short type to long type is : " + mylong);
} 
catch (Exception e) {
System.out.println(" Error " + e);
}
}
}
 

Output:

Download this code

Ads