Math.random( )를 사용하여 1에서 100사이의 난수를 발생시켜 난수가 홀수인지 짝수인지를 출력하는 프로그램을 작성하세요. package com.dream.controls; public class ControlEx03 { public static void main(String[] args) { int value = (int)(Math.random( )*100 + 1); // 1에서 100까지의 난수를 발생 String str = ""; if(value%2 == 1) { // value가 홀수이면 str = "홀수"; // 조건이 참(true)일 때 실행 }else { // value가 짝수이면 str = "짝수"; // 조건이 거짓(false)일 때 실행 } System.out.println(v..