난수를 발생시키는 2가지 방법.
자바에서 난수를 발생시키는 방법으로는 2가지 방법이 있다. 첫번째는 Math클래스의 random메서드를 이용하여 난수를 발생시키는 방법이다. 아래의 예제로 설명하자면, 0~1 사이의 double형 난수를 리턴한 후 * 10을 하고, 그 값을 int형으로 a,b,c,d,e에 반환하여 출력하는 것이다. public class HelloWorld{ public static void main(String []args){ int a = (int) (Math.random()*10); int b = (int) (Math.random()*10); int c = (int) (Math.random()*10); int d = (int) (Math.random()*10); int e = (int) (Math.random()*..