码迷,mamicode.com
首页 > 其他好文 > 详细

自考新教材-p142_3(1)

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

标签:src   name   pac   ima   include   iostream   str   image   oid   

源程序:

#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)

标签:src   name   pac   ima   include   iostream   str   image   oid   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!