두 자연수 A와 B가 주어진다. 이때, A+B, A-B, A*B, A/B(몫), A%B(나머지)를 출력하는 프로그램을 작성하시오.
두 자연수 A와 B가 주어진다. (1 ≤ A, B ≤ 10,000)
첫째 줄에 A+B, 둘째 줄에 A-B, 셋째 줄에 A*B, 넷째 줄에 A/B, 다섯째 줄에 A%B를 출력한다.
:: 성공
: 개선점 : 없음
using System;
namespace Print05
{
class Program
{
static void Main(string[] args)
{
// :: Input
string[] input = Console.ReadLine().Split(' ');
// :: Parsing
int a = Int32.Parse(input[0]);
int b = Int32.Parse(input[1]);
// :: Result
Console.WriteLine("{0}", a + b);
Console.WriteLine("{0}", a - b);
Console.WriteLine("{0}", a * b);
Console.WriteLine("{0}", a / b);
Console.WriteLine("{0}", a % b);
}
}
}
'C#' 카테고리의 다른 글
백준 2588 : 곱셈 (0) | 2020.11.16 |
---|---|
백준 10430 : 나머지 (0) | 2020.11.15 |
백준 10998 : A×B (0) | 2020.11.13 |
백준 1008 : A/B (0) | 2020.11.12 |
백준 10172 : 개 // 성공 (0) | 2020.11.07 |