[JAVA] Math.random() 사용 방법 및 예제
- 카테고리 없음
- 2013. 7. 15. 21:30
[JAVA] Math.random() 사용 방법 및 예제
Math.random()
0.0
이상으로,1.0
보다 작은 정의 부호가 붙은 double
치를 돌려줍니다.
0.0 <= Math.random() < 1.0
예제 소스 1
public class ex1 {
public static void main(String[] args) {
// TODO Auto-generated method stub
int score = (int)(Math.random()*10)+1;
System.out.println(score);
switch(score){
case 10:
{
System.out.println("만점입니다.");
break;
}
default:
{
System.out.println("점수는"+score+"입니다");
}
}
}
}
예제 소스2
public class ex1 {
public static void main(String[] args) {
// TODO Auto-generated method stub
char score = (char)(Math.random()*4 +'A');
System.out.println(score);
switch(score){
case 'A':
{
System.out.println("만점입니다.");
break;
}
default:
{
System.out.println("점수는"+score+"입니다");
}
}
}
}
이 글을 공유하기