https://www.acmicpc.net/problem/1008
Python
a, b = map(int, input().split())
print(a/b)
Java
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner scan = new Scanner(System.in);
String[] s = scan.nextLine().split(" ");
double n1 = Integer.parseInt(s[0]);
double n2 = Integer.parseInt(s[1]);
double d = n1/n2;
System.out.println(d);
scan.close();
}
}
* 주의할 점: int로 값을 저장해서 나누면 1/3 을 했을 때 0이 나온다.
double로 저장해서 연산, 출력해야 소수점 이하의 값도 구할 수 있다.
'알고리즘 > 백준' 카테고리의 다른 글
[Python/Java] 백준 10430번 - 나머지 (0) | 2020.06.08 |
---|---|
[Python/Java] 백준 10869번 - 사칙연산 (0) | 2020.06.08 |
[Python/Java] 백준 10998번 - A×B (0) | 2020.06.08 |
[Python/Java] 백준 1001번 - A-B (0) | 2020.06.08 |
[Python/Java] 백준 1000번 - A+B (0) | 2020.06.08 |
댓글