출제 링크 : https://www.acmicpc.net/problem/10430
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Solution
{
class Program
{
static void Main(string[] args)
{
string[] s = Console.ReadLine().Split();
int A = int.Parse(s[0]);
int B = int.Parse(s[1]);
int C = int.Parse(s[2]);
Console.WriteLine((A + B) % C);
Console.WriteLine(((A % C) + (B % C)) % C);
Console.WriteLine((A * B) % C);
Console.WriteLine(((A % C) * (B % C)) % C);
}
}
}
'Baekjoon 문제풀이' 카테고리의 다른 글
[Baekjoon 2단계(1)] 1330번 : 두 수 비교하기 (0) | 2021.08.31 |
---|---|
[Baekjoon 1단계(11)] 2588번 : 곱셈 (0) | 2021.08.31 |
[Baekjoon 1단계(9)] 10869번 : 사칙연산 (0) | 2021.08.31 |
[Baekjoon 1단계(8)] 1008번 : A/B (0) | 2021.08.31 |
[Baekjoon 1단계(7)] 10998번 : AxB (0) | 2021.08.31 |