본문 바로가기

algorithm

백준 31403번 A+B-C

https://www.acmicpc.net/problem/31403

 

아이디어:

1. string 사용

2. 숫자 (int) -> 문자열 (string): to_string(number)

3. 문자열 (string) -> 숫자 (int): stoi(string)

4. string에서 +는 붙이기

 

// 31403

#include <iostream>
#include <string>

using namespace std;

int main() {

	ios::sync_with_stdio(false);
	cin.tie(NULL);

	int a, b, c, result_1, result_2;
	string n, m;

	cin >> a;
	cin >> b;
	cin >> c;

	result_1 = a + b - c;

	n = to_string(a);
	m = to_string(b);
	result_2 = stoi(n + m) - c;
	
	cout << result_1 << "\n" << result_2;

	return 0;
}

'algorithm' 카테고리의 다른 글

백준 2577번 숫자의 개수  (0) 2024.11.03
백준 10250번 ACM 호텔  (0) 2024.11.03
백준 2475번 검증수  (0) 2024.10.27
백준 15964번 이상한 기호  (0) 2024.10.27
백준 2754번 학점계산  (0) 2024.10.27