NaN

From Lazarus wiki
Revision as of 10:41, 24 October 2017 by Djzepi (talk | contribs)
Jump to navigationJump to search

English (en) suomi (fi) русский (ru)

NaN (not a number) is a numeric data type value representing an undefined or unrepresentable value. These values result from operations which have undefined numerical results. NaN is not the same as infinity.

program Project1;

begin
  Writeln (0/0);
  Readln;
end.

See also