Monday, December 10, 2007

How to work with Abs by example

How to work with Abs by example

To work with Abs by example

Example:

program Welcome;

uses

WinCrt;

var

r:integer;

t:real;

begin

r:=Abs(-100);

t:=Abs(-1.2);

Write(r,t);

end.

Output:

No comments: