diff --git "a/Programmers/\354\210\250\354\226\264\354\236\210\353\212\224_\354\210\253\354\236\220\354\235\230_\353\215\247\354\205\210_1.cpp" "b/Programmers/\354\210\250\354\226\264\354\236\210\353\212\224_\354\210\253\354\236\220\354\235\230_\353\215\247\354\205\210_1.cpp" new file mode 100644 index 0000000..2da36bc --- /dev/null +++ "b/Programmers/\354\210\250\354\226\264\354\236\210\353\212\224_\354\210\253\354\236\220\354\235\230_\353\215\247\354\205\210_1.cpp" @@ -0,0 +1,16 @@ +#include +#include + +using namespace std; + +int solution(string my_string) { + int answer = 0; + + for (char c : my_string) { + if (isdigit(c)) { + answer += c - '0'; + } + } + + return answer; +} \ No newline at end of file