Ejemplo 1: c ++ usando booleano
bool isCodingFun = true;
bool isFishTasty = false;
cout << isCodingFun; // Outputs 1 (true)
cout << isFishTasty; // Outputs 0 (false)
//credit to w3schools.com
Ejemplo 2: función bool en c ++
bool Divisible(int a, int b) {
return (a % b) == 0;
}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)