MateExample
public class MateExample {
public static void main(String[] args) {
double sqrt = Math.sqrt(16); // sqrt는 루트
System.out.println("sqrt 루트 :"+ sqrt);
int round = Math.round(14.3f); // Math.round(flat값); 첫째자리 반올림
System.out.println(round);
double temp = 14.64755;
temp = temp*100; //1464.755
temp = Math.round(temp); // 1465.0
temp = temp/100;//14.65
System.out.println(temp);
}
}
숫자를 루트로 변환
double 변수명 = Math.sqrt(숫자);
첫째자리 반올림
int 변수명 = Math.round(##.#f);
//flaot값
StringExample
DateExample
CalExample