일상

1008 : A/B

STUDYING,,, 2021. 7. 23. 13:14
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {

		Scanner sc = new Scanner(System.in);
		double a = sc.nextDouble();
		double b = sc.nextDouble();

		System.out.println(a / b);

	}
}

'일상' 카테고리의 다른 글

10171 : 고양이  (0) 2021.07.23
2588 : 곱셈  (0) 2021.07.23
1001 : A-B  (0) 2021.07.23
1000 : A+B  (0) 2021.07.23
2557 : Hello World  (0) 2021.07.23