Recent Posts
Notice
No Rules Rules
A+B - 6 (feat. 백준, 10953번) 본문
728x90
반응형
A+B - 6
https://www.acmicpc.net/problem/10953
// 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