일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 회원가입
- 백준
- Spring JPA
- 파이썬
- python
- modern c++
- 자바
- SWEA
- SW Expert Academy
- spring boot
- programmers
- SECS
- SECS/GEM
- java
- linux
- c
- 스포티파이
- Gem
- Spotify Api
- 프로그래머스
- C++
- CS
- Spring
- regression
- Computer Science
- MYSQL
- Baekjoon
- spotify
- 회귀
- SECS-II
Archives
- Today
- Total
비버놀로지
[BAEKJOON 백준] 1008 A/B 본문
728x90
Scanner을 이용을 해서 입력을 받아줍니다. 그런데 여기서 소수점 값이 나올수 있으므로, Int 대신 double을 이용을해서 작성을 한다.
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);
}
}
728x90
'ALGORITM > JAVA' 카테고리의 다른 글
[BAEKJOON 백준] 1074 Z (0) | 2021.01.10 |
---|---|
[BAEKJOON 백준] 1032 명령 프롬프트 (0) | 2021.01.10 |
[BAEKJOON 백준] 1001 A-B (0) | 2021.01.10 |
[BAEKJOON 백준] 1000 A+B (0) | 2021.01.10 |
[Programmers 프로그래머스] 17682 [1차] 다트 게임 (0) | 2021.01.10 |
Comments