Problem C: 类的初体验
摘要:
#include <iostream> using namespace std; class Data { private: double x; public: void init(double xx){x = xx;} double getValue(){return x;} void showV 阅读全文
posted @ 2020-04-20 21:50 我有一个大萝北 阅读(190) 评论(0) 推荐(0) 编辑