예제 #1
0
파일: Games19.java 프로젝트: ktw14/vitoex
 public void play() {
   print("Toss Coin: ");
   switch (rand.nextInt(2)) {
     case 0:
       println("Heads");
       return;
     case 1:
       println("Tails");
       return;
     default:
       println("OnEdge");
       return;
   }
 }
예제 #2
0
파일: Games19.java 프로젝트: ktw14/vitoex
 public void play() {
   print("Throw Dice: " + (rand.nextInt(6) + 1));
 }