본문 바로가기
Portpolio/algorithm

백준 10950 C++ 풀이

by Peter Choi 2024. 7. 12.
반응형

 

https://boj.kr/10950

 

#include <stdio.h>

int main(void)
{
	int a, b, t;
	scanf("%d", &t);
	for (int i = 0; i < t; i++)
	{
		scanf("%d%d", &a, &b);
		printf("%d\n", a + b);
	}

	return 0;

 

반응형

'Portpolio > algorithm' 카테고리의 다른 글

백준 1001 c++ 풀이  (0) 2024.07.12
백준 1000 c++ 풀이  (0) 2024.07.12
algorithm category posting  (0) 2024.07.12
맞왜틀 : 1초에 1억번 연산  (0) 2023.08.09
백준 10845 c언어 풀이  (0) 2023.08.08

댓글