@param args
(String[] args)
| 7 | * @param args |
| 8 | */ |
| 9 | public static void main(String[] args) { |
| 10 | |
| 11 | Random x = new Random(); |
| 12 | // for (int y=0; y<50;y++) |
| 13 | // { |
| 14 | int choice = x.nextInt(); |
| 15 | choice = choice % 2; |
| 16 | System.out.println(choice); |
| 17 | // } |
| 18 | } |
| 19 | |
| 20 | } |