c++中char类型变量如何转换成int类型变量?
例子:charstr_tmp;intint_tmp;str_tmp='5';int_tmp=(int)str_tmp;cout<<int_tmp<<endl;输出的是5的...
例子:
char str_tmp;
int int_tmp;
str_tmp='5';
int_tmp=(int)str_tmp;
cout<<int_tmp<<endl;
输出的是5的ASCII码值53,怎么才能让int_tmp==5而不是53呢? 展开
char str_tmp;
int int_tmp;
str_tmp='5';
int_tmp=(int)str_tmp;
cout<<int_tmp<<endl;
输出的是5的ASCII码值53,怎么才能让int_tmp==5而不是53呢? 展开
6个回答
展开全部
char str_tmp;
int int_tmp;
str_tmp='5';
int_tmp=(int)(str_tmp - '0');
cout<<int_tmp<<endl;
int int_tmp;
str_tmp='5';
int_tmp=(int)(str_tmp - '0');
cout<<int_tmp<<endl;
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
int_tmp=str_tmp-48;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用函数斯stoi()就行。
int_tmp=stoi(str_tmp);
int_tmp=stoi(str_tmp);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
int_tmp=(int)str_tmp;改成
int_tmp = str_tmp -'0';
int_tmp = str_tmp -'0';
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询