Home Tutorial Java Corejava Dataconversion Short Conversion from short to int

 
 

Conversion from short to int
Posted on: September 6, 2010 at 12:00 AM
In this tutorial we will learn about how to convert a short type data to int type.

Conversion from short to int:

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

Description:

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

Code:

import java.io.*;

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

Output:

Download this code

Related Tags for Conversion from short to int:


Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.