Conversion from float to boolean


 

Conversion from float to boolean

In this tutorial we will learn how to convert a float type value to boolean type value.

In this tutorial we will learn how to convert a float type value to boolean type value.

Conversion from float to boolean:

In this tutorial we will learn how to convert a float type value to boolean type value.

Description:

This program will take a float value from console and provides a conversion to boolean type data. The line float myfloat = Float.parseFloat(buffreader.readLine()); reads the float type data from console. The line boolean mybool = (myfloat!=0); checks the condition if myfloat value is not equal to zero the mybool value will be true otherwise false.

Code:

import java.io.*;

class floattoboolean {
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 float type to boolean type---");
System.out.println("Enter float type value: ");
// Read float type data
float myfloat = Float.parseFloat(buffreader.readLine());
// Convert float type data to boolean type
boolean mybool = (myfloat!=0);
System.out.println("Converted value from float type to boolean type is : " + mybool);
} 
catch (Exception e) {
System.out.println(" Error " + e);
}
}
}
 

Output:

Download this code

Ads