「Java入門」java.lang.Math.floor()のサンプル
javaコード
package sample;
public class MathDemo {
public static void main(String[] args) {
// 初期値
double x = 70554.1;
double y = -697.99;
// Math.floor: 引数として与えた数以下の最大の整数を返す
System.out.println(“*******************************");
System.out.println(“Math.floor(" + x + “)=" + Math.floor(x));
System.out.println(“Math.floor(" + y + “)=" + Math.floor(y));
System.out.println(“Math.floor(0)=" + Math.floor(0));
System.out.println(“——————————-“);
}
}
結果
*******************************
Math.floor(70554.1)=70554.0
Math.floor(-697.99)=-698.0
Math.floor(0)=0.0
——————————-