本文主要是介绍016 惊呆!Point竟然能这样输入输出,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
#include <iostream>
using namespace std;
class Point {
private:
int x;
int y;
public:
Point() { };
friend istream& operator>> (istream & is,Point & pp) {
int temp;
cin >> temp;
pp.x = temp;
cin >> temp;
pp.y = temp;
return is;
}
friend ostream& operator<< (ostream & o,const Point & pp) {
o << pp.x<<","<<pp.y;
return o;
}
};
int main()
{
Point p;
while(cin >> p) {
cout << p << endl;
}
return 0;
}
这篇关于016 惊呆!Point竟然能这样输入输出的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!