NaN

From Lazarus wiki
Revision as of 09:59, 24 October 2017 by Djzepi (talk | contribs) (Created page with "{{NaN}} 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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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.