Graal Forums

Graal Forums (https://forums.graalonline.com/forums/index.php)
-   NPC Scripting (https://forums.graalonline.com/forums/forumdisplay.php?f=8)
-   -   Absolute Value? (https://forums.graalonline.com/forums/showthread.php?t=134266991)

Alpho 08-16-2012 04:12 AM

Absolute Value?
 
Hey all, i've been trying to figure out what the function is, if we even have any, for finding the 'absolute value' of an integer.
PHP Code:

echo(|-10|); 

should return 10 if it's working correctly.

Thanks!

cbk1994 08-16-2012 04:21 AM

|| is math notation. Use abs in most programming languages:

PHP Code:

echo(abs(- 10)); // 10 


Alpho 08-16-2012 04:22 AM

Quote:

Originally Posted by cbk1994 (Post 1701876)
|| is math notation. Use abs in most programming languages:

PHP Code:

echo(abs(- 10)); // 10 


Thank you, Chris!


All times are GMT +2. The time now is 01:05 AM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.