查看会员资料
用 户 名:刘****
发送消息- Email:用户隐藏
- Icq/MSN:
- 电话号码:
- Homepage:
- 会员简介:
最新会员发布资源
Exercises-of-the-first-experiment
- 北京理工大学面向对象程序设计第五次上机习题答案~-Here is the definition of Point: class Point { private: double X, Y public: void SetPoint(double a, double b) } void Point::SetPoint(double a, double b) { X = a Y = b } a)