※ 글쓴이는 취미로 코딩을 익혀보는 사람이라 정확하지 않은 내용을 담고 있을 수 있다 ※

 

이번에 볼 문제는 백준 26531번 문제인 Simple Sum이다.
문제는 아래 링크를 확인하자.

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

 

26531번: Simple Sum

You have hired someone to help you with inventory on the farm. Unfortunately, the new cowhand has very limited math skills, and they are having trouble summing two numbers. Write a program to determine if the cowhand is adding these numbers correctly.

www.acmicpc.net

입력으로 들어오는 1, 3, 5번째 문자를 각각 정수 a, b, c로 읽어들이고 a+b==c가 성립하는지를 확인하자.

 

위의 식의 값이 참이라면 "YES"를, 거짓이라면 "NO"를 출력하는 것으로 문제를 해결할 수 있다.

 

아래는 제출한 소스코드이다.

#include <iostream>
#include <string>
using namespace std;

int a, b, c; char x;

int main() {
	ios::sync_with_stdio(0);
	cin.tie(0);

	cin >> a >> x >> b >> x >> c;
	if (a + b == c) cout << "YES";
	else cout << "NO";
}
728x90

'BOJ' 카테고리의 다른 글

[BOJ 26561 // C++] Population  (0) 2022.12.19
[BOJ 6825 // C++] Body Mass Index  (0) 2022.12.19
[BOJ 2321 // Fortran] Crowing  (0) 2022.12.19
[BOJ 26545 // C++] Mathematics  (0) 2022.12.19
[BOJ 26495 // C++] Big Number  (0) 2022.12.19

+ Recent posts