diff --git a/algorithm/boj/_posts/2024-02-08-[APBMC-26].md b/algorithm/boj/_posts/2024-02-08-[APBMC-26].md new file mode 100644 index 0000000..f9ee8d3 --- /dev/null +++ b/algorithm/boj/_posts/2024-02-08-[APBMC-26].md @@ -0,0 +1,69 @@ +--- +layout: single +title: "[백준 31403] A + B - C (C#, C++) - soo:bak" +date: "2024-02-08 00:15:00 +0900" +description: 수학, 구현, 문자열 등을 주제로 하는 백준 31403번 문제를 C++ C# 으로 풀이 및 해설 +--- + +## 문제 링크 + [31403번 - A + B - C](https://www.acmicpc.net/problem/31403) + +## 설명 +문제의 설명 그대로, `JavaScript` 에서 `+`, `-` 연산자가 '숫자' 와 '문자열' 에 대해서 작동하는 방식을 토대로,
+
+세 정수 `A`, `B`, `C` 를 입력받아 첫 줄에는 `A`, `B`, `C` 를 '숫자' 로 생각했을 때의 '`A` + `B` - `C`' 의 값을,
+
+둘 째 줄에는 `A`, `B`, `C` 를 '문자열' 로 생각했을 때의 '`A` + `B` - `C`' 의 값을 출력하는 문제입니다.
+
+ +- - - + +## Code +[ C# ] +
+ + ```c# +namespace Solution { + class Program { + static void Main(string[] args) { + + var a = Console.ReadLine()!; + var b = Console.ReadLine()!; + var c = Console.ReadLine()!; + + var intRet = int.Parse(a) + int.Parse(b) - int.Parse(c); + var strRet = int.Parse(a + b) - int.Parse(c); + + Console.WriteLine(intRet); + Console.WriteLine(strRet); + } + } +} + ``` +

+[ C++ ] +
+ + ```c++ +#include + +using namespace std; + +int main() { + ios::sync_with_stdio(false); + cin.tie(nullptr); + + int a, b, c; cin >> a >> b >> c; + + cout << a + b - c << "\n"; + + string strA = to_string(a); + string strB = to_string(b); + string strC = to_string(c); + + int resultStr = stoi(strA + strB) - stoi(strC); + cout << resultStr << "\n"; + + return 0; +} + ```