1146 面向对象程序设计上机练习七(类和对象)

来源:互联网 发布:亲情 缺失 知乎 编辑:程序博客网 时间:2024/05/29 12:20

面向对象程序设计上机练习七(类和对象)

Time Limit: 1000MS Memory Limit: 65536KB

Problem Description

利用类的数据成员和成员函数完成下列操作:输入三个整数,输出它们的最大值。

Input

输入三个整数。

Output

输出3个整数的最大值。

Example Input

2 8 5

Example Output

8
#include <bits/stdc++.h>using namespace std;class Clock{    public:        void input()        {            cin >> x >> y >> z;        }        void output()        {            x = max(x,y);            x = max(x,z);            cout << x << endl;        }    private:        int x,y,z;};int main(){    Clock durex;    durex.input();    durex.output();    return 0;}


阅读全文
0 0
原创粉丝点击