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 | 31 |
Tags
- Linux
- 인강
- 부스트코스
- 수박수박수박수박수?
- 웹개발
- CSS
- 웹프로그래밍
- HTML
- java
- 이클립스
- 프로그래머스
- 농은면접
- 필기
- BOJ
- 코딩
- algorithm
- 연결요소의개수
- 중소기업면접
- 알고리즘
- 백준
- 후기
- 프로그래밍언어
- 공부
- 웹
- 프로그래밍
- 한국재정정보원
- 정수내림차순으로배치하기
- 필기후기
- 확인문제
- 건보필기
Archives
- Today
- Total
공부하는 히욤이
2029. 몫과 나머지 출력하기 본문
* 문제의 저작권은 SW Expert에 있습니다
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | import java.util.Scanner; class Solution { public static void main(String args[]) { Scanner scanner = new Scanner(System.in); int T = scanner.nextInt();; //TestCase 개수 int a, b; for (int test_case = 0; test_case < T; test_case++) { int mok, nam = 0; a = scanner.nextInt(); b = scanner.nextInt(); mok = a/b; //몫 nam = a%b; //나머지 System.out.println("#" + (test_case+1) +" "+ mok +" " +nam); } } } | cs |
'Algorithm > SW Expert Academy' 카테고리의 다른 글
2070. 큰 놈, 작은 놈, 같은 놈 (0) | 2019.01.10 |
---|---|
2068. 최대수 구하기 (0) | 2019.01.10 |
1933. 간단한 N 의 약수 (0) | 2019.01.10 |
2050. 알파벳을 숫자로 변환 (0) | 2019.01.10 |
2027. 대각선 출력하기 (0) | 2019.01.10 |