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
- 오늘도 우라라 펫
- C++
- install opencv-4.4.0 on ubuntu 22.04
- MSG
- 오늘도 우라라 공략
- 우분투
- ros
- 마리아 DB
- 오늘도 우라라
- 프로그래밍
- topic
- publish
- while
- 토픽
- 오늘도 우라라 펫 공략
- C언어
- Subscribe
- ubuntu
- mysql
- mariaDB
- 기초
- 등차수열
- 반복문
- LeetCode
- JungOl
- 환경설정
- Linux
- 데이터 베이스
- 그랑사가
- 리눅스
Archives
- Today
- Total
하루의 쉼터
[사칙연산] 10430. 나머지 - C++ 본문
반응형
| 10430. 나머지
Category :
입출력과 사칙연산
Title :
10430. 나머지
Rank :
Bronze
Language :
C++
Question :
(A+B)%C는 ((A%C) + (B%C))%C 와 같을까?
(A×B)%C는 ((A%C) × (B%C))%C 와 같을까?
세 수 A, B, C가 주어졌을 때, 위의 네 가지 값을 구하는 프로그램을 작성하시오.
Condition :
Input
첫째 줄에 A, B, C가 순서대로 주어진다. (2 ≤ A, B, C ≤ 10000)
Output
첫째 줄에 (A+B)%C, 둘째 줄에 ((A%C) + (B%C))%C, 셋째 줄에 (A×B)%C, 넷째 줄에 ((A%C) × (B%C))%C를 출력한다.
Code :
#include<iostream>
class cl_solution{
public:
int fn_run(int a, int b,int c);
};
int cl_solution::fn_run(int a, int b, int c){
if (2 <= a && b <= 10000 && c <= 10000) {
std::cout << ((a + b) % c) << std::endl;
std::cout << (((a % c) + (b % c)) % c) << std::endl;
std::cout << ((a * b) % c) << std::endl;
std::cout << (((a % c) * (b % c)) % c) << std::endl;
return 0;
}
else
return -1;
}
int main() {
cl_solution* sol = new cl_solution();
int a = 0, b = 0,c = 0;
std::cin >> a;
std::cin >> b;
std::cin >> c;
sol->fn_run(a, b,c );
delete sol;
return 0;
}
BackJoon :
https://www.acmicpc.net/problem/10430
GitHub :
반응형
'Coding Test > BaekJoon' 카테고리의 다른 글
[조건문] 1330. 두 수 비교하기 - C++ (0) | 2022.01.11 |
---|---|
[기초수학] 1193. 분수찾기 - C++ (0) | 2022.01.11 |
[사칙연산] 10869. 사칙연산 - C++ (0) | 2022.01.11 |
[사칙연산] 1008. A/B - C++ (0) | 2022.01.11 |
[사칙연산] 10998. AxB - C++ (0) | 2022.01.11 |
Comments