Dado un valor entero, la tarea es convertir este valor entero en un valor booleano en Java.
Ejemplos:
Input: int = 1 Output: true Input: int = 0 Output: false
Acercarse:
- Obtenga el valor booleano a convertir.
- Comprobar si el valor booleano es verdadero o falso
- Si el valor entero es mayor que igual a 1, establezca el valor booleano como verdadero.
- De lo contrario, si el valor entero es mayor que 1, establezca el valor booleano como falso.
Ejemplo 1:
// Java Program to convert integer to boolean public class GFG { public static void main(String[] args) { // The integer value int intValue = 1; // The expected boolean value boolean boolValue; // Check if it's greater than equal to 1 if (intValue >= 1) { boolValue = true; } else { boolValue = false; } // Print the expected integer value System.out.println( intValue + " after converting into boolean = " + boolValue); } }
Producción:
1 after converting into boolean = true
Ejemplo 2:
// Java Program to convert integer to boolean public class GFG { public static void main(String[] args) { // The integer value int intValue = 0; // The expected boolean value boolean boolValue; // Check if it's greater than equal to 1 if (intValue >= 1) { boolValue = true; } else { boolValue = false; } // Print the expected integer value System.out.println( intValue + " after converting into boolean = " + boolValue); } }
Producción:
0 after converting into boolean = false