Tagged Questions
2
votes
3answers
1k views
Fractional Part of the number question
What is a good algorithm to determine the necessary fraction needed to add/sub to the number in order to round it to the nearest integer without using the inbuilt ceiling or floor funcitons?
Edit: ...
1
vote
5answers
643 views
How do I randomly generate a number between 75 - 100%?
I know how to do it between 0 and 100, but I can I set the floor?
This is how I do 0 - 100..
int randomNum = (int) Math.ceil(Math.random() * 100);