f0603.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:
C#编程
开发平台:
Visual C++
- //=====================================
- // f0603.cpp
- // 内联函数
- //=====================================
- #include<iostream>
- using namespace std;
- //-------------------------------------
- inline bool isnumber(char); // 内联声明
- //-------------------------------------
- int main(){
- for(char c; cin>>c && c!='n'; )
- if(isnumber(c)) cout<<"you entered a digit.n";
- else cout<<"you entered a non-digit.n";
- }//------------------------------------
- bool isnumber(char ch){
- return ch>='0' && ch<='9' ? 1 : 0;
- }//====================================