package chapter01;
public class Test03 {
public static void main(String[] args) {
// TODO Auto-generated method stub
float f = 1.213123213213122314f;
// float f3 = 1.2; // 소수점이 들어가면 더블형으로 인식하기 때문에 f를 넣어줘야함
double d = 1.213124315133123123; // 더 자세한 소수점을 볼려면 float 보단 double
float f2 = 0.100000001f; // 0.1
double d2 = 0.13141253134123; // double은 접미사 생략 가능
System.out.println(f); // 소수점 8자리에서 반올림
System.out.println(d);
System.out.println(f2);
System.out.println(d2);
}
}