色婷婷狠狠18禁久久YY,CHINESE性内射高清国产,国产女人18毛片水真多1,国产AV在线观看

隨機數字表怎么從表中任意指定行

李中冰2年前20瀏覽0評論

隨機數字表怎么從表中任意指定行?

1.你用輸入輸出流就可以的.

2.用類Math看看下面的代碼

importjava.text.numberFormat;

publicclassMath類的應用

{

publicstaticvoidmain(Stringargs[])

{

doublea=Math.sqrt(5);

System.out.println("格式化前:"+a);

NumberFormatf=NumberFormat.getInstance();

f.setMaximumFractionDigits(5);

f.setMinimumFractionDigits(3);

Strings=f.format(a);

System.out.println("格式化后:"+s);

System.out.println("得到隨機數是:");

intnumber=8;

for(inti=1;i<=20;i++)

{

intrandomNumber=(int)(Math.random()*number)+1;

System.out.print(""+randomNumber);

if(i%10==0)

System.out.print("");

}

doublec,d,e;

c=123.456;

d=456.789;

e=Math.abs(c);

System.out.println("絕對值:"+e);

e=Math.max(c,d);

System.out.println("最大值:"+e);

e=Math.min(c,d);

System.out.println("最小值:"+e);

e=Math.pow(c,d);

System.out.println("C的D次冪:"+e);

e=Math.log(c);

System.out.println("c的對數:"+e);

e=Math.sin(c);

System.out.println("c的正弦值:"+e);

e=Math.asin(c);

System.out.println("反正弦值:"+e);

}

}

java 對數,隨機數字表怎么從表中任意指定行