fraction.h.svn-base

来自「QT方面的开发」· SVN-BASE 代码 · 共 19 行

SVN-BASE
19
字号
#ifndef _FRACTION_H_ #define _FRACTION_H_  #include <string>using namespace std;class Fraction {public:    void set(int numerator, int denominator);    double toDouble() const;    string toString() const;private:    int m_Numerator;    int m_Denominator;};#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?