Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- greedy
- hash table
- simulation
- 구현
- 코테
- implement
- string
- array
- Matrix
- Stack
- sorting
- Class
- 코딩테스트
- SQL
- 자바
- Method
- Binary Tree
- java
- Number Theory
- two pointers
- Math
- 파이썬
- bit manipulation
- geometry
- database
- Tree
- Data Structure
- Counting
- dynamic programming
- Binary Search
Archives
- Today
- Total
코린이의 소소한 공부노트
[프로그래머스/Lv.0] 몫 구하기 본문
1. Input
1) 정수 num1
2) 정수 num2
2. Output
1) num1을 num2로 나눈 몫
3. Constraint
1) 0 <= num1 <= 100
2) 0 <= num2 <= 100
4. Example
Input: num1=20, num2=5 -> Output: 4
Input: num1=20, num2=6 -> Output: 3
5. Code
1) 첫 코드(2022/10/17)
return num1 / num2;
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[프로그래머스/Lv.0] 숫자 비교하기 (0) | 2022.10.18 |
---|---|
[프로그래머스/Lv.0] 두 수의 나눗셈 (0) | 2022.10.18 |
[프로그래머스/Lv.0] 두 수의 곱 (0) | 2022.10.18 |
[프로그래머스/Lv.0] 두 수의 차 (0) | 2022.10.18 |
[프로그래머스/Lv.0] 두 수의 합 (0) | 2022.10.18 |