calcstatistic.h
来自「大学时用c++做的计算器」· C头文件 代码 · 共 31 行
H
31 行
#ifndef CALCSTATISTIC_H
#define CALCSTATISTIC_H
#include "common.h"
#include <vector>
#include <cmath>
class CalculatorStatistic
{
public:
CalculatorStatistic();
void store(const ValueType &data);
void clear();
ValueType num();
ValueType sum();
ValueType average();
ValueType stdDiff();
ValueType min();
ValueType max();
ValueType load(const int index);
void del(const int index);
private:
std::vector<ValueType> __data;
};
#endif // CALCSTATISTIC_H
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?