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
- 웹
- 백준
- 확인문제
- 웹프로그래밍
- 중소기업면접
- java
- 인강
- 연결요소의개수
- HTML
- 공부
- 한국재정정보원
- 건보필기
- 필기
- 농은면접
- 프로그래밍언어
- 후기
- CSS
- 부스트코스
- BOJ
- 코딩
- 정수내림차순으로배치하기
- 프로그래머스
- 웹개발
- 프로그래밍
- algorithm
- 이클립스
- 수박수박수박수박수?
- 필기후기
- 알고리즘
Archives
- Today
- Total
공부하는 히욤이
10430번 : 나머지 본문
10430번 : 나머지
* 문제 출처 : 백준 알고리즘
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | import java.io.IOException; import java.util.Scanner; public class Main { public static void main(String[] args) throws Exception, IOException { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); int c = sc.nextInt(); System.out.println((a+b)%c); System.out.println((a%c+b%c)%c); System.out.println((a*b)%c); System.out.println((a%c*b%c)%c); } } | cs |
'Algorithm > BaekJoon' 카테고리의 다른 글
9498번 : 시험 성적 (0) | 2019.02.18 |
---|---|
2558번 : A+B (0) | 2019.02.18 |
10869번 : 사칙연산 (0) | 2019.02.18 |
1008번 : A/B (0) | 2019.02.18 |
2438번 : 별 찍기 - 1 (0) | 2019.02.13 |