[프로그래머스]숫자 문자열과 영단어
문제 풀이 #include #include using namespace std; int solution(string s) { int answer = 0; string arr[] = {"zero","one", "two", "three", "four", "five", "six", "seven", "eight", "nine", "ten"}; int len = sizeof(arr)/sizeof(arr[0]); int i=0; while(i 씹어먹는 C++ - modoocode.com https://blockdmask.tistory.com/333 [C++] stoi, stof, stol, stod 함수에 대해서 (string to int) 안녕하세요. BlockDMask 입니다. 지난시간에는 C/C++에 기존에 ..