[알고리즘] 백준 11024 - 더하기 4 (C++) [문제 링크] : https://www.acmicpc.net/problem/11024#include using namespace std;int main(){ int T; string S; cin >> T; cin.ignore(); while(T--){ getline(cin, S); int res = 0; string tmp = ""; for(int i=0; i 알고리즘 2025.02.10