摘要: #include <iostream>using namespace std; template <class T> class Absolute { private: T num; public: Absolute(T n) { num = n; } T getValue() const { if 阅读全文
posted @ 2023-05-17 22:43 a_true 阅读(46) 评论(0) 推荐(0)