Renderer Posted July 6, 2016 Share Posted July 6, 2016 Hello there ! Is there any way to return only the remainder of a number? I mean if i have the Number 2.3, how can i only return the remainder in this case 3? Thanks in advance! Link to comment Share on other sites More sharing options...
AutoBert Posted July 6, 2016 Share Posted July 6, 2016 Read about Mod() in helpfile Link to comment Share on other sites More sharing options...
RTFC Posted July 6, 2016 Share Posted July 6, 2016 @AutoBert: Mod() returns the remainder of a division, which is not what the OP is asking for. Instead, try: $var=2.3 msgbox(0,"test",_DecimalPart($var)) Func _DecimalPart($value) Return $value-Int($value) EndFunc My Contributions and Wrappers Spoiler BitMaskSudokuSolver BuildPartitionTable CodeCrypter CodeScanner DigitalDisplay Eigen4AutoIt FAT Suite HighMem MetaCodeFileLibrary OSgrid Pool RdRand SecondDesktop SimulatedAnnealing Xbase I/O Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now