close
import java.util.*;
public class FF
{
public static void main ( String args [] )
{
Scanner scr = new Scanner ( System.in );
Random rand = new Random ((new Date()).getTime()); //隨機亂數這行必備
int a ;
a = rand.nextInt(100);
System.out.print(a);
}
}
全站熱搜
留言列表