No Rules Rules

A+B - 6 (feat. 백준, 10953번) 본문

생활/코테

A+B - 6 (feat. 백준, 10953번)

개발하는 완두콩 2023. 1. 25. 15:37
728x90
반응형

A+B - 6
https://www.acmicpc.net/problem/10953

 

10953번: A+B - 6

두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.

www.acmicpc.net

 

// woohyeon.kim
// kim519620.tistory.com
#include <iostream>
using namespace std;
int main() {
	ios::sync_with_stdio(false), cin.tie(NULL);
    register int N;
    cin >> N;
    char tmp[4];
    for(register int n = 0; n < N; ++n){
        cin >> tmp;
        cout << (int)(tmp[0] - '0') + (int)(tmp[2] - '0') << "\n";
    }
    return 0;
}
// *&)*@*

 

반응형

 

문자열을 입력받고 산술 연산을 하는 문제입니다.

728x90
반응형

'생활 > 코테' 카테고리의 다른 글

숨바꼭질 2 (feat. 백준, 12851번)  (0) 2023.01.27
비밀편지 (feat. 백준, 2596번)  (0) 2023.01.26
2007년 (feat. 백준, 1924번)  (0) 2023.01.25
홀수 (feat. 백준, 2576번)  (0) 2023.01.25
특식 배부 (feat. 백준, 27110번)  (0) 2023.01.12
Comments