import java.util.Scanner;


public class Main{

    public static void main(String[] args){

    Scanner sc = new Scanner(System.in);

    double a = sc.nextInt();

    double b = sc.nextInt();

    

    System.out.println(a/b);

    }

}



- 예제에서 1/3 하면 1.33333333333 까지 나오게 하라고 함.

- int 형으로 접근하면 나머지를 출력 못함.

- float 형도 못함 double 로해야 원하는 오차범위를 충족시킬 수 있었다.



+ Recent posts