I need to do the following equation floor(e%100000) where e is a double. I know mod only accepts int values, how do I go about achieving this same result?
Thanks
|
feedback
|
|
Use the | |||
|
feedback
|
|
Why don't you take the floor first, then mod, ie. Perhaps I've misunderstood what you're trying to achieve. Could you give an example of the input and output you expect? | |||||||
feedback
|
|
You could use division to make the equivalent of modulo:
This prints
Of course, this is much slower than any built-in modulo... You could also just use Edit Fixed std::cout (C++) reference to use printf (C). Fixed change to output. Now it is purely C. | |||||
feedback
|