[C++] 문자<->숫자 형변환

이소진·2021년 1월 15일
0

📝문자 -> 숫자

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';
profile
webFront / Flutter / iOS 😉

0개의 댓글