📄 calcstatistic.h
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -