반응형
using System;
namespace baek2
{
class Program
{
static void Main(string[] args)
{
string input;
string[] token;
input = Console.ReadLine();
token = input.Split();
int A = int.Parse(token[0]);
int B = int.Parse(token[1]);
int C = int.Parse(token[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);
}
}
}
반응형
'코딩테스트 준비 > 백준 C#' 카테고리의 다른 글
백준 C# 11382 +) int, long 차이 (0) | 2023.04.07 |
---|---|
백준 C# 2588 (0) | 2023.04.07 |
백준 C# 18108 (0) | 2023.04.07 |
백준 C# 10926 (0) | 2023.04.06 |
백준 C# 10869 (0) | 2023.04.06 |
댓글