Skip to content

Latest commit

 

History

History
37 lines (19 loc) · 616 Bytes

형변환.md

File metadata and controls

37 lines (19 loc) · 616 Bytes

c++에서의 형변환

string형 -> 숫자형(int, long, double, float)

#include // 헤더 파일 추가

string sNum = "1234";

string sNum_d = "1234.56";

int inum = stoi(sNum);

long Inum = stol(sNum);

double dnum = stod(sNum_d);

float fnum = stof(sNum_d);

숫자형(int, long, double, float) -> string형

#include 헤더 파일 추가

int inum = 1234;

long Inum = 1234;

double dnum=1234.56;

float fnum=1234.56f;

string intToString = to_string(inum);

string longToString = to_string(lnum);

string doubleToString = to_string(dnum);

string floatToString = to_string(fnum);