본문 바로가기
프로그래머스 C++/Level.1

프로그래머스 Level.1 문자열을 정수로 바꾸기

by yeni_0224 2023. 7. 10.
728x90
반응형

stoi() 함수를 사용해서 바꿔주는 것으로 문제를 풀었다.

#include <string>
#include <vector>

using namespace std;

int solution(string s) {
    int answer = 0;
    answer = stoi(s);
    return answer;
}

https://yeni-0224.tistory.com/entry/%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%98%EB%A8%B8%EC%8A%A4-C-Level-0-%EB%AC%B8%EC%9E%90%EC%97%B4%EB%A1%9C-%EB%B3%80%ED%99%98

 

프로그래머스 C++ Level. 0 문자열로 변환

정수 n이 주어질 때, n을 문자열로 변환하여 return하도록 solution 함수를 완성해주세요. #include #include using namespace std; string solution(int n) { string answer = ""; answer = to_string(n); return answer; } 프로그래머스

yeni-0224.tistory.com

이 글을 참고하기!

728x90
반응형