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

C#编程

开发平台:

Visual C++

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