自考新教材-p142_3
Posted duanqibo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自考新教材-p142_3相关的知识,希望对你有一定的参考价值。
源程序:
#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的主要内容,如果未能解决你的问题,请参考以下文章