Conversion from byte to double


 

Conversion from byte to double

In this tutorial we will learn how to convert a byte type value to double type value.

In this tutorial we will learn how to convert a byte type value to double type value.

Conversion from byte to double:

In this tutorial we will learn how to convert a byte type value to double type value.

Description:

This program will take a byte value from console and provides a conversion to double type data. The line byte mybyte = Byte.parseByte(buffreader.readLine()); reads the byte type data from console. The line double mydouble = (double)(mybyte); converts the mybyte byte type value to mydouble double type data.

Code:

import java.io.*;

class bytetodouble {
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 byte type to double type---");
System.out.println("Enter byte type value: ");
// Read byte type data
byte mybyte = Byte.parseByte(buffreader.readLine());
// Convert byte type data to double type
double mydouble = (double)(mybyte);
System.out.println("Converted value from byte type to double type is : " + mydouble);
} 
catch (Exception e) {
System.out.println(" Error " + e);
}
}
}
 

Output:

Download this code

Ads