第13课 课后作业
#include <stdio.h>int main()
{
int ch;
int num = 0;
printf("请输入待转换的字符串:");
do
{
ch = getchar();
if (ch >= '0' && ch <= '9')
{
num = 10 * num + (ch - '0');
}
else
{
if (num)
{
break; // 如果已有数字,则退出循环
}
}
}
while (ch != '\n');
printf("结果是:%d\n", num);
return 0;
}
第16行代码为什么要ch - '0' 这个是因为要把用户输入的字符转换成数字
具体可以看这一篇
ASCII字符表
https://fishc.com.cn/thread-67427-1-1.html
(出处: 鱼C论坛)
页:
[1]