[백준 31403] A + B - C (C#, C++) - soo:bak
작성일 :
문제 링크
설명
문제의 설명 그대로, JavaScript
에서 +
, -
연산자가 ‘숫자’ 와 ‘문자열’ 에 대해서 작동하는 방식을 토대로,
세 정수 A
, B
, C
를 입력받아 첫 줄에는 A
, B
, C
를 ‘숫자’ 로 생각했을 때의 ‘A
+ B
- C
’ 의 값을,
둘 째 줄에는 A
, B
, C
를 ‘문자열’ 로 생각했을 때의 ‘A
+ B
- C
’ 의 값을 출력하는 문제입니다.
Code
[ C# ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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++ ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <bits/stdc++.h>
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;
}