ch5_3.cpp
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:0k
源码类别:

C#编程

开发平台:

Visual C++

  1. //*********************
  2. //**    ch5_3.cpp    **
  3. //*********************
  4. #include <iostream.h>
  5. int isnumber(char);    //函数声明
  6. void main()
  7. {
  8.   char c;
  9.   while((c=cin.get())!='n')
  10.     if( isnumber(c) )      //调用一个小函数
  11.       cout <<"you entered a digitn";
  12.     else
  13.       cout <<"you entered a non_digitn";
  14. }
  15. int isnumber(char ch)      //函数定义
  16. {
  17.   return (ch>='0' && ch<='9')? 1:0;
  18. }