2012年5月28日 星期一

Java 基礎練習(4)-Dice Program

import java.util.*;

class Dice{

public static void main(String args[])
{
Random rand = new Random();
int a = rand.nextInt(6)+1;
System.out.println(a);

}

}

沒有留言:

張貼留言