码迷,mamicode.com
首页 >  
搜索关键字:字符串转换成整数(简单版)    ( 1个结果
将字符串转换成对应的整数(简单版,后续会出复杂版的)
#include<stdio.h> #include<assert.h> #include<stdlib.h> intmy_atoi(constchar*str) { assert(str); intflag=1; intret=0; while(isspace(*str)) { str++; } if(*str==‘-‘) { flag=-1; } if(*str==‘+‘||*str==‘-‘) { str++; } while(*str) { ret=ret*10+(..
分类:其他好文   时间:2016-04-04 13:22:09    阅读次数:187
1条  
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!