⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 calcstatistic.h

📁 大学时用c++做的计算器
💻 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 + -