#include <stdio.h>
int main() {
int A, B, C;
scanf("%d %d %d", &A, &B, &C);
printf("%d\n", (A + B) % C);
printf("%d\n", ((A % C) + (B % C)) % C);
printf("%d\n", (A*B) % C);
printf("%d\n", ((A % C) *(B % C)) % C);
return 0;
}
곱하기는 *이다
'C > 백준' 카테고리의 다른 글
[C언어] 백준 9498번 시험성적 (0) | 2021.07.20 |
---|---|
[C언어] 백준 2588번 곱셈 (0) | 2021.07.13 |
[C언어] 백준 1008번 A/B (0) | 2021.07.01 |
[C언어] 백준 1000번 A+B (0) | 2021.07.01 |
[C언어] 백준 10172 개 (0) | 2021.06.30 |