首页 > 其他分享 >基本功练习_2_24_3之字符串转数字

基本功练习_2_24_3之字符串转数字

时间:2023-03-01 10:02:08浏览次数:50  
标签:24 10 int void return0 str 字符串 基本功

int main(void)
{
inti =0, n=0;

charstr[]="12345";
while(str[i]!='\0')
{
n=n*10+(str[i]-'0');
i++;
}

printf("数值:%d\n", n);

return0;
}

标签:24,10,int,void,return0,str,字符串,基本功
From: https://blog.51cto.com/u_15983838/6092939

相关文章