[백준 10869] 사칙연산 (C#, C++) - soo:bak
작성일 :
문제 링크
설명
사칙연산에 대한 단순한 문제입니다.
두 자연수를 입력받아, 두 수의 합, 차이, 곱, 몫, 그리고 나머지를 차례대로 출력합니다.
Code
[ C# ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace Solution {
class Program {
static void Main(string[] args) {
var input = Console.ReadLine()!.Split(' ');
var a = int.Parse(input[0]);
var b = int.Parse(input[1]);
Console.WriteLine($"{a + b}");
Console.WriteLine($"{a - b}");
Console.WriteLine($"{a * b}");
Console.WriteLine($"{a / b}");
Console.WriteLine($"{a % b}");
}
}
}
[ C++ ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int a, b; cin >> a >> b;
cout << a + b << "\n"
<< a - b << "\n"
<< a * b << "\n"
<< a / b << "\n"
<< a % b << "\n";
return 0;
}