* 从java核心技术一中学习的新还函数调用总结,持续更新中
* import static java.lang.Math.*;使用这个后,类中方法将可以不再用Math.
*/
import static java.lang.Math.*;
public class PingFangGen {
public static void main(String[] args)
{
/**
* Math.sqrt(x);这是求平方根算法
*/
double x=4;
double b=5;
double y=Math.sqrt(x);
double y1=sqrt(b);
System.out.println(x+"的平方根为"+y);
System.out.println(b+"的平方根为"+y1);
/**
* Math.pow(x, a) pow是对于多次幂的算法
*/
int a=3;
double z=Math.pow(x, a);
double z1=Math.pow(b, a);
System.out.println(x+"的"+a+"次幂为"+z);
System.out.println(b+"的"+a+"次幂为"+z1);
System.out.println("*************");
/**
* Math.PI
*/
System.out.println("The square root of\u03C0 is"+sqrt(PI));
System.out.println("*************");
/**
* int型转化为float型
*/
int n=123456789;
float f=n;
System.out.println(f);
System.out.println("*************");
/**
* 小数截取小数取整数
* 小数的四舍五入,Math.round(x);
*/
double m=9.997;
int m1=(int)m;
int m2=(int)round(m);
System.out.println(m1);
System.out.println(m2);
System.out.println("*************");
/**
* 截取字符串”hello“,位置0~4
*/
String sc="hello";
String s=sc.substring(0, 4);
System.out.println(s);
System.out.println("*************");
/**
* 字符串拼接
*/
String o="我爱";
String p="桂纶镁";
String q=o+p;
System.out.println(q);
sc=sc.substring(0,3)+"p!";
System.out.println(sc);
}
}
|