Home | History | Annotate | Download | only in src

Lines Matching full:system

23       System.out.println("Math.sin(" + d + ") = "
26 System.out.println("Math.sinh(" + d + ") = "
28 System.out.println("Math.asin(" + d + ") = "
30 System.out.println("Math.cos(" + d + ") = "
32 System.out.println("Math.cosh(" + d + ") = "
34 System.out.println("Math.acos(" + d + ") = "
37 System.out.println("Math.tan(" + d + ") = "
40 System.out.println("Math.tanh(" + d + ") = "
42 System.out.println("Math.atan(" + d + ") = "
44 System.out.println("Math.atan2(" + d + ", " + (d + 1.0) + ") = "
50 System.out.println("Math.cbrt(" + e + ") = "
52 System.out.println("Math.log(" + e + ") = "
54 System.out.println("Math.log10(" + e + ") = "
56 System.out.println("Math.log1p(" + e + ") = "
58 System.out.println("Math.exp(" + e + ") = "
60 System.out.println("Math.expm1(" + e + ") = "
62 System.out.println("Math.pow(" + e + ", " + (e + 1.0) + ") = "
64 System.out.println("Math.hypot(" + e + ", " + (e + 1.0) + ") = "
68 System.out.println("Math.ceil(0.0001) = "
70 System.out.println("Math.floor(0.0001) = "
72 System.out.println("Math.nextAfter(1.0, 2.0) = "
74 System.out.println("Math.nextAfter(2.0, 1.0) = "
76 System.out.println("Math.rint(0.5000001) = "
81 System.out.println("StrictMath.sin(" + d + ") = " + StrictMath.sin(d));
82 System.out.println("StrictMath.sinh(" + d + ") = " + StrictMath.sinh(d));
83 System.out.println("StrictMath.asin(" + d + ") = " + StrictMath.asin(d));
84 System.out.println("StrictMath.cos(" + d + ") = " + StrictMath.cos(d));
85 System.out.println("StrictMath.cosh(" + d + ") = " + StrictMath.cosh(d));
86 System.out.println("StrictMath.acos(" + d + ") = " + StrictMath.acos(d));
87 System.out.println("StrictMath.tan(" + d + ") = " + StrictMath.tan(d));
88 System.out.println("StrictMath.tanh(" + d + ") = " + StrictMath.tanh(d));
89 System.out.println("StrictMath.atan(" + d + ") = " + StrictMath.atan(d));
90 System.out.println("StrictMath.atan2(" + d + ", " + (d + 1.0) + ") = "
96 System.out.println("StrictMath.cbrt(" + e + ") = " + StrictMath.cbrt(e));
97 System.out.println("StrictMath.log(" + e + ") = " + StrictMath.log(e));
98 System.out.println("StrictMath.log10(" + e + ") = " + StrictMath.log10(e));
99 System.out.println("StrictMath.log1p(" + e + ") = " + StrictMath.log1p(e));
100 System.out.println("StrictMath.exp(" + e + ") = " + StrictMath.exp(e));
101 System.out.println("StrictMath.expm1(" + e + ") = " + StrictMath.expm1(e));
102 System.out.println("StrictMath.pow(" + e + ", " + (e + 1.0) + ") = "
104 System.out.println("StrictMath.hypot(" + e + ", " + (e + 1.0) + ") = "
108 System.out.println("StrictMath.ceil(0.0001) = " + StrictMath.ceil(0.0001));
109 System.out.println("StrictMath.floor(0.0001) = " + StrictMath.floor(0.0001));
110 System.out.println("StrictMath.nextAfter(1.0, 2.0) = " + StrictMath.nextAfter(1.0, 2.0));
111 System.out.println("StrictMath.rint(0.5000001) = " + StrictMath.rint(0.5000001));