int형 : stoi()
float형 : stof()
double형 : stod()
long long형 : stoll()
주의: #include < string>을 해줘야함
편법 : 문자-'0'
string s1="123"; float f1=stof(s1); //123
char a = '4'; int b = a - '0';
to_string()
주의: #include < string>을 해줘야함
편법 : 문자 + '0'
int a=10; string s1 = to_string(a);
int c = 3; char d = c + '0';