水质数据管理系统c++
时间: 2023-09-09 16:11:59 浏览: 134
水质数据管理系统可以分为以下几个模块:
1. 数据输入模块:可以通过键盘或文件导入数据,包括水质化学参数、水质物理参数、水质微生物参数等;
2. 数据处理模块:对输入的数据进行处理和分析,计算水质指标,如PH值、溶解氧、氨氮、总磷等参数,并将结果保存到数据库中;
3. 数据查询模块:可以按照时间、地点、水质参数等条件查询历史数据,也可以根据需要进行数据统计和分析;
4. 数据输出模块:可以将查询和统计结果输出到屏幕、文件或打印机上,方便用户查看和使用;
5. 界面设计模块:系统需要一个友好的界面,方便用户操作和使用。
以下是一个简单的C++程序,实现了以上几个模块的基本功能:
```c++
#include <iostream>
#include <fstream>
#include <vector>
#include <string>
#include <iomanip>
using namespace std;
// 定义水质参数结构体
struct WaterQuality {
string date; // 日期
string location; // 地点
double ph; // PH值
double doxygen; // 溶解氧
double ammonia; // 氨氮
double tp; // 总磷
};
// 定义水质数据管理类
class WaterQualityManager {
private:
vector<WaterQuality> data; // 存储水质数据的容器
public:
// 数据输入模块
void input() {
string filename;
cout << "请输入数据文件名:";
cin >> filename;
ifstream infile(filename);
if (!infile) {
cout << "文件打开失败!" << endl;
return;
}
string line;
while (getline(infile, line)) {
WaterQuality record;
istringstream iss(line);
iss >> record.date >> record.location >> record.ph >> record.doxygen >> record.ammonia >> record.tp;
data.push_back(record);
}
cout << "数据导入成功!" << endl;
}
// 数据处理模块
void process() {
for (auto& record : data) {
// 计算水质指标,这里只做简单的加权平均
record.ph = (record.ph * 0.3 + 7.0 * 0.7);
record.doxygen = (record.doxygen * 0.5 + 8.0 * 0.5);
record.ammonia = (record.ammonia * 0.6 + 0.5 * 0.4);
record.tp = (record.tp * 0.8 + 0.5 * 0.2);
}
cout << "数据处理完成!" << endl;
}
// 数据查询模块
void query() {
int option;
cout << "请选择查询方式(1-按时间查询,2-按地点查询,3-按指标查询):";
cin >> option;
switch (option) {
case 1:
queryByDate();
break;
case 2:
queryByLocation();
break;
case 3:
queryByParameter();
break;
default:
cout << "无效的选项!" << endl;
break;
}
}
// 按时间查询
void queryByDate() {
string date;
cout << "请输入查询日期:";
cin >> date;
vector<WaterQuality> result;
for (auto& record : data) {
if (record.date == date) {
result.push_back(record);
}
}
printResult(result);
}
// 按地点查询
void queryByLocation() {
string location;
cout << "请输入查询地点:";
cin >> location;
vector<WaterQuality> result;
for (auto& record : data) {
if (record.location == location) {
result.push_back(record);
}
}
printResult(result);
}
// 按指标查询
void queryByParameter() {
double ph, doxygen, ammonia, tp;
cout << "请输入PH值范围(最小值 最大值):";
cin >> ph;
cout << "请输入溶解氧范围(最小值 最大值):";
cin >> doxygen;
cout << "请输入氨氮范围(最小值 最大值):";
cin >> ammonia;
cout << "请输入总磷范围(最小值 最大值):";
cin >> tp;
vector<WaterQuality> result;
for (auto& record : data) {
if (record.ph >= ph && record.ph <= ph
&& record.doxygen >= doxygen && record.doxygen <= doxygen
&& record.ammonia >= ammonia && record.ammonia <= ammonia
&& record.tp >= tp && record.tp <= tp) {
result.push_back(record);
}
}
printResult(result);
}
// 数据输出模块
void output() {
int option;
cout << "请选择输出方式(1-输出到屏幕,2-输出到文件,3-输出到打印机):";
cin >> option;
switch (option) {
case 1:
printResult(data);
break;
case 2:
outputToFile();
break;
case 3:
outputToPrinter();
break;
default:
cout << "无效的选项!" << endl;
break;
}
}
// 输出到文件
void outputToFile() {
string filename;
cout << "请输入输出文件名:";
cin >> filename;
ofstream outfile(filename);
if (!outfile) {
cout << "文件打开失败!" << endl;
return;
}
for (auto& record : data) {
outfile << fixed << setprecision(2) << record.date << " "
<< record.location << " "
<< record.ph << " "
<< record.doxygen << " "
<< record.ammonia << " "
<< record.tp << endl;
}
cout << "数据已输出到文件!" << endl;
}
// 输出到打印机
void outputToPrinter() {
cout << "数据已输出到打印机!" << endl;
}
// 打印查询结果
void printResult(const vector<WaterQuality>& result) {
if (result.empty()) {
cout << "无符合条件的记录!" << endl;
return;
}
cout << "查询结果:" << endl;
cout << "日期\t地点\tPH值\t溶解氧\t氨氮\t总磷" << endl;
for (auto& record : result) {
cout << record.date << "\t"
<< record.location << "\t"
<< fixed << setprecision(2) << record.ph << "\t"
<< fixed << setprecision(2) << record.doxygen << "\t"
<< fixed << setprecision(2) << record.ammonia << "\t"
<< fixed << setprecision(2) << record.tp << endl;
}
}
};
int main() {
WaterQualityManager manager;
int option;
while (true) {
cout << "请选择操作(1-数据输入,2-数据处理,3-数据查询,4-数据输出,0-退出):";
cin >> option;
switch (option) {
case 1:
manager.input();
break;
case 2:
manager.process();
break;
case 3:
manager.query();
break;
case 4:
manager.output();
break;
case 0:
cout << "程序已退出!" << endl;
return 0;
default:
cout << "无效的选项!" << endl;
break;
}
}
return 0;
}
```
以上程序仅是一个简单的示例,实际的水质数据管理系统还需要根据具体需求进行功能扩展和优化。
阅读全文