目标:掌握math类的用法
源代码:TestMath.java
/*
* math类的用法
* author guojing
* e-mail guo443193911@126.com
*
*/
package cn.com.TestMath;
public class TestMath {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
//得到一个随机数
double d = Math.random();
System.out.println(d);
//计算半径为10的圆的周长
double p = 2*Math.PI*10;
System.out.println(p);
}
}
这个程序调用Math中的一个静态方法random()来生成一个随机数,它将返回一个0-1之间的double类型的数据。并且。利用这个Math类
的静态常量PI,来计算一个半径为10的园的周长。
运行这个程序,将向控制台打印出如下信息:
0.4398155585227642
62.83185307179586
阅读(340) | 评论(0) | 转发(0) |