/Puzzle1.java Secret
Created
August 24, 2018 21:05
Revisions
-
benjholla created this gist
Aug 24, 2018 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,23 @@ 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; } }