0
Comment initialiser un nombre avec NaN dans Borland C++?Comment initialiser un nombre avec NaN dans Borland C++?
double: Using NaN in C++?
Comment initialiser un nombre avec NaN dans Borland C++?Comment initialiser un nombre avec NaN dans Borland C++?
double: Using NaN in C++?
Vous pouvez regarder std::numeric_limits<double>::quiet_NaN()
. Inclure <limits>
.
Dans la documentation, ils disent "Le NaN silencieux pour le type int est: 0" ... comment puis-je faire une distinction entre NaN et le vrai 0? – luvieere
NaN n'est applicable qu'aux types de virgule flottante. – Bill
@luvieere. Vérifiez std :: numeric_limits :: has_quiet_NaN; Vous trouverez que c'est faux. alors que std :: numeric_limits :: has_quiet_NaN est vrai –