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

C#编程

开发平台:

Visual C++

  1. //**********************
  2. //**    ch21_2.cpp    **
  3. //**********************
  4. #include <iostream.h>
  5. double Div(double, double );
  6. void main()
  7. {
  8.   try{
  9.     cout <<"7.3/2.0=" <<Div(7.3, 2.0) <<endl;
  10.     cout <<"7.3/0.0=" <<Div(7.3, 0.0) <<endl;
  11.     cout <<"7.3/1.0=" <<Div(7.3, 1.0) <<endl;
  12.   }
  13.   catch(double)
  14.   {
  15.     cout <<"except of deviding zero.n";
  16.   }
  17.   cout <<"That is ok. n";
  18. }
  19. double Div(double a, double b)
  20. {
  21.   if(b==0.0)
  22.     throw b;
  23.   return a/b;
  24. }