博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
第7章例7-12
阅读量:4918 次
发布时间:2019-06-11

本文共 349 字,大约阅读时间需要 1 分钟。

#include
int main(void){ int i,number; char str[10]; printf("Enter a string:"); i=0; while((str[i]=getchar())!='\n') i++; str[i]='\0'; number=0; for(i=0;str[i]!='\0';i++) if(str[i]>='0'&& str[i]<='9') number=number*10+str[i]-'0'; printf("digit=%d\n",number); return 0;}

 

转载于:https://www.cnblogs.com/huangsilinlana/p/3352753.html

你可能感兴趣的文章
Java常用的系统类
查看>>
XPO to Database Connectivity: Mastering Fork Etiquett
查看>>
ADO实现单条记录的刷新《转》
查看>>
python列表和循环判断
查看>>
Spring各jar包的作用(转载)
查看>>
Windows10 +Ubuntu 18.04双系统安装详细教程
查看>>
ecmall 别人做好的商城
查看>>
《数据结构教程》(李春葆 主编)课后习题【练习题7】
查看>>
What do cryptic Github comments mean?
查看>>
DAY73-Django框架(四)
查看>>
报错:1130-host ... is not allowed to connect to this MySql server 开放mysql远程连接 不使用localhost...
查看>>
Java EE应用的组件
查看>>
Hive记录-Sqoop常用命令
查看>>
手写事件代理函数 (Delegated function)
查看>>
test1
查看>>
(转载)面试题收集——Java基础部分(一)
查看>>
Java泛型中的? super T语法
查看>>
SSH框架学习步骤
查看>>
react config test env with jest and create-react-app 1
查看>>
#if (DEBUG)
查看>>