[string] 067. 숫자를 문자열로 변환하기 (to_string)

jychan99·2021년 11월 10일
0
 #include <iostream>

#include <string>

using namespace std;



int main()

{

    int number1 = 10;

    double number2 = 67.8;



    string no_str1 = to_string(number1);

    string no_str2 = to_string(number2);



    //넘버는 숫자라서 사칙연산이된다.

    cout << "number1 : " << number1 + 10 << endl; 

    cout << "number2 : " << number2 + 10 << endl;

    //문자열로 바뀌면 숫자로이루어진 문자열이 되므로 사칙연산시 에러가난다

    cout << "no_str1 : " << no_str1 << endl; 

    cout << "no_str2 : " << no_str2 << endl;



    return 0;

}
profile
내가 지금 두려워 하고 있는 일이 바로 내가 지금 해야 할 일이다. 🐍

0개의 댓글

관련 채용 정보