#include <iostream>
#include <math.h>
double max(double x, double y)//自定义函数
{
if (x>y) {
return x;
}
else
{
return y;
}
}
int main(int argc, const char * argv[])
{
double a,b,c;
std::cout<<"Enter two number :";
std::cin>>a>>b;
c=max(a,b); //函数调用
std::cout << "the Max is :"<<c;
//调用math.h库函数 求平方根
std::cout<<"the squar root of c :"<<sqrt(c);
return 0;
}
C++ 简单函数
最新推荐文章于 2023-12-08 19:45:43 发布