首页 > 其他 > 详细

自考新教材-p142_3(1)

时间:2020-02-06 20:02:53      阅读:66      评论:0      收藏:0      [点我收藏+]

源程序:

#include <iostream>
using namespace std;
class point
{
private:
float x;
public:
void f(float a)
{
x = a;
}
void f()
{
x = 0;
}
friend float max(point &a,point &b);
};

float max(point &a, point &b)
{
return (a.x > b.x) ? a.x : b.x;
}

int main()
{
point a, b;
a.f(2.2);
b.f(3.3);
cout << max(a, b) << endl;
system("pause");
return 1;
}

运行结果:

技术分享图片

 

自考新教材-p142_3(1)

原文:https://www.cnblogs.com/duanqibo/p/12269966.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!