f0604.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:
C#编程
开发平台:
Visual C++
- //=====================================
- // f0604.cpp
- // 未声明内联
- //=====================================
- #include<iostream>
- using namespace std;
- //-------------------------------------
- bool isnumber(char); // 此处无inline
- //-------------------------------------
- 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";
- }//------------------------------------
- inline bool isnumber(char ch){ // 此处为inline
- return ch>='0' && ch<='9' ? 1 : 0;
- }//====================================