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

C#编程

开发平台:

Visual C++

  1. //*********************
  2. //**    ch1_3.cpp    **
  3. //*********************
  4. #include <iostream.h>
  5. #include <math.h>
  6. double max(double x, double y);
  7. void main()
  8. {
  9.   double a,b,c;
  10.   cout <<"input two numbers:n";
  11.   cin >>a >>b;
  12.   c = max(a,b);
  13.   cout <<"the squart of maximum = " <<sqrt(c);
  14. }
  15. double max(double x, double y)
  16. {
  17.   if(x>y)
  18.     return x;
  19.   else
  20.     return y;
  21. }