Files
harbour-core/tests/round.prg
Viktor Szakats 3ed9fa0f45 2016-01-14 19:33 UTC+0100 Viktor Szakats (vszakats users.noreply.github.com)
* *
    % remove brandings and homepage from copyright header. Pass 2 - semi-auto.
    * project homepage and name is described in README, amongst others
    ; this should make the diff between 3.4 and 3.2 easier to manage
2016-01-14 19:35:07 +01:00

20 lines
362 B
Plaintext

// Testing Harbour rounding
/* Donated to the public domain on 2001-03-08 by David G. Holm <dholm@jsd-llc.com> */
PROCEDURE Main()
LOCAL n, value := -5
FOR n := 1 TO 100
? ;
value, ;
Round( value, 3 ),;
Round( value, 2 ),;
Round( value, 1 ),;
Round( value, 0 )
value += 0.001
NEXT
RETURN