ch5_3.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:
C#编程
开发平台:
Visual C++
- //*********************
- //** ch5_3.cpp **
- //*********************
- #include <iostream.h>
- int isnumber(char); //函数声明
- void main()
- {
- char c;
- while((c=cin.get())!='n')
- if( isnumber(c) ) //调用一个小函数
- cout <<"you entered a digitn";
- else
- cout <<"you entered a non_digitn";
- }
- int isnumber(char ch) //函数定义
- {
- return (ch>='0' && ch<='9')? 1:0;
- }