-
-
Save benjholla/2cd9233ebd14866243a5af61a0c33f04 to your computer and use it in GitHub Desktop.
Java Puzzle 1 (spot the bug if one exists)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Random; | |
public class Puzzle1 { | |
public static void main(String[] args) { | |
Random rnd = new Random(); | |
int odds = 0; | |
int runs = 1000; | |
for(int i=0; i<runs; i++) { | |
int num = rnd.nextInt(); | |
if(isOdd(num)) { | |
odds++; | |
} | |
} | |
double oddPercentage = ((double) odds / (double) runs) * 100.0; | |
System.out.println("Odd: " + String.format("%.2f", oddPercentage) + "%"); | |
} | |
private static boolean isOdd(int num) { | |
return num % 2 == 1; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Adapted from Java Puzzlers: Traps, Pitfalls, and Corner Cases - Puzzle #1