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);
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);
}
}