반응형
using System;
namespace baek2
{
class Program
{
static void Main(string[] args)
{
string word = Console.ReadLine();
string[] token = word.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.Write(((A % C) * (B % C)) % C);
}
}
}
반응형
'코딩테스트 준비 > 백준 C#' 카테고리의 다른 글
백준 C# - 1934 (0) | 2023.10.31 |
---|---|
백준 C# - 2609 +) 풀이 (0) | 2023.10.31 |
백준 C# - 11656 +) 풀이 (0) | 2023.10.27 |
백준 C# - 10842 +) overflow문제 (0) | 2023.10.27 |
백준 C# - 11655 +)풀이 (0) | 2023.10.27 |
댓글