๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ
Algorithm ๐Ÿง‘๐Ÿป‍๐Ÿ’ป/๋ฐฑ์ค€(BOJ)

[๋ฐฑ์ค€,c++] 10823๋ฒˆ - ๋”ํ•˜๊ธฐ2

by dkswnkk 2021. 10. 24.
 

10823๋ฒˆ: ๋”ํ•˜๊ธฐ 2

๋ฌธ์ž์—ด S๊ฐ€ ์—ฌ๋Ÿฌ ์ค„์— ๊ฑธ์ณ์„œ ์ฃผ์–ด์ง„๋‹ค. S์˜ ๊ธธ์ด๋Š” ์ตœ๋Œ€ 10,000์ด๋‹ค. ํฌํ•จ๋˜์–ด์žˆ๋Š” ์ •์ˆ˜๋Š” 1,000,000๋ณด๋‹ค ์ž‘๊ฑฐ๋‚˜ ๊ฐ™์€ ์ž์—ฐ์ˆ˜์ด๋‹ค.

www.acmicpc.net

#include <iostream>
#include <string>

using namespace std;

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

    string s, temp;
    int ans = 0;
    while (getline(cin, s)) {
        for (int i = 0; i < s.length(); i++) {
            if (s[i] != ',') {
                temp += s[i];
            } else {
                ans += stoi(temp);
                temp.clear();

            }
        }
    }
    ans += stoi(temp);
    cout << ans;

}

๋Œ“๊ธ€