*문자열을 정수로 바꾸기(음수도 stoi 됨;) #include <iostream> #include <string> using namespace std; int solution(string s) { int answer = 0; answer = stoi(s); return answer; } | cs |
::public/코딩테스트 풀이
*문자열을 정수로 바꾸기(음수도 stoi 됨;) #include <iostream> #include <string> using namespace std; int solution(string s) { int answer = 0; answer = stoi(s); return answer; } | cs |