- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我正在创建一个模拟蓄水池注水的程序。到目前为止,这个过程进展顺利,除了我想做的最后一件事是获取填充水库所需的最大、最小和平均年数。我想在不使用数组的情况下这样做。我想我很接近,但我一定错过了一些简单的东西。原谅我,我只是在学习 C++。
#include <iostream>
#include <cstdlib>
#include <cmath>
#include <string>
#include <ctime>
using namespace std;
int main ()
{
string operation;
do{
cout << "Using the letters 's', or 'q', please indicate if you would like to run a simulation, or quit the program: " << endl;
cin >> operation;
} while (operation != "s" && operation != "q");
string reservoir_name; // Creating variables for reservoir
double reservoir_capacity;
double outflow;
double inflow_min;
double inflow_max;
if (operation == "q")
{
cout << endl;
cout << "This was a triumph . . ." << endl;
cout << "I'm making a note here: huge success!" << endl;
system ("pause");
return 0;
}
while (operation == "s")
{
string reservoir_name; // Creating variables
double reservoir_capacity;
double inflow_min = 0;
double inflow_max = 0;
double inflow_average = inflow_min + inflow_max;
double inflow_difference = inflow_max - inflow_min;
double inflow_threshold = .9 * inflow_average/2; // Math for acceptable flow threshold.
cout << "What is the name of the reservoir?" << endl;
cin.ignore ();
getline (cin,reservoir_name); // Grab whole string for reservoir name.
cout << "What is the capacity of the reservoir in MAF (Millions of Acre Feet)?" << endl;
cin >> reservoir_capacity;
cout << "What is the minimum inflow?" << endl;
cin >> inflow_min;
cout << "What is the maximum inflow?" << endl;
cin >> inflow_max;
cout << "What is the required outflow?" << endl;
cin >> outflow;
cout << endl;
inflow_average = inflow_min + inflow_max;
inflow_threshold = .9 * inflow_average/2; // Calculate threshold for too much outflow.
cin.ignore ();
if (outflow > inflow_threshold) // Check for unacceptable outflow levels.
{
cout << "Warning! The outflow is over 90% of the average inflow. Simulation aborted. Returning to main menu." << endl << endl;
}
else
{
const int number_simulations = 10;
cout << endl;
cout << "Reservoir name: " << reservoir_name << endl;
cout << "Capacity of reservoir in MAF: " << reservoir_capacity << endl;
cout << "Maximum inflow in MAF: " << inflow_max << endl;
cout << "Minimum inflow in MAF: " << inflow_min << endl;
cout << "Required outflow in MAF: " << outflow << endl << endl;
cout << "Running simulation . . ." << endl << endl;
srand (time(0));
const int sentinel = -1;
int minimum = sentinel;
int maximum = sentinel;
int years_total;
for (int i = 1; i <= number_simulations; i++) // Loop should run the filling simulation 10 times.
{
int years = 0;
double fill_level = 0;
for (years; fill_level < reservoir_capacity; years++ ) // Loop should simulate filling reservoir using random inflow values between inflow_min and inflow_max.
{
double r = rand() * 1.0 / RAND_MAX;
double x = inflow_min + (inflow_max - inflow_min) * r;// SHOULD be between minimum inflow and maximum inflow.
// cout << "Random Number x :" << x << endl; WAS USED TO CHECK IF RANDOM NUMBER WAS CHANGING
fill_level = fill_level + x - outflow;
if (fill_level < 0)
{
fill_level = 0; // Prevent fill level from going negative.
}
//cout << "Fill level is " << fill_level << endl; TO CHECK THE CHANGE IN FILL LEVEL PER ITERATION
if (minimum == sentinel || years < minimum) // Trying to set up the method for retrieving minimum value here. Currently returning as 0.
{
minimum = years;
}
if (maximum == sentinel || years > maximum) // Trying to set up the method for retrieving maximum value here. Currently returning as 1 less than the actual maximum.
{
maximum = years;
}
} // Simulate the change of water level.
cout << "Simulation " << i << ": The reservoir took " << years << " years to fill." << endl;
}
cout << "The minimum number of years needed to fill: " << minimum << endl;
cout << "The maximum number of years needed to fill: " << maximum << endl;
cout << "The average number of years needed to fill: " << years_total / 10 << endl; // Take the running total of years over 10 simulations and divide by 10. Currently returning as 0.
}
cout << endl;
cout << "What would you like to do now?" << endl << endl; // Saving for later. The menu re-prompt message and code.
cout << "Using the letters 's', or 'q', please indicate if you would like to run a simulation or quit the program: " << endl;
cin >> operation;
if (operation == "q")
{
cout << endl;
cout << "This was a triumph . . ." << endl;
cout << "I'm making a note here: huge success!" << endl;
system ("pause");
return 0;
}
}
system ("pause");
return 0;
}
最佳答案
既然我们在谈论 C++,我觉得有必要提到标准的 C++ 库操作,它们可以(极大地)帮助:
std::minmax_element
返回包含集合的最小值和最大值的对(还有 std::min_element
和 std::max_element
可用)。std::accumulate
, 当用 0 初始化时,返回集合元素的总和;平均值相差不远。当然,如果您希望同时拥有 3 个,这就不太理想了,因为这意味着两次遍历集合而不是一次。然而,它仍然是 O(N) 时间和 O(1) 空间,并且大大减少了您必须编写的代码。
关于c++ - 在 C++ 中查找序列的最小值/最大值/平均值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12756825/
我正在阅读 Python 文档以真正深入了解 Python 语言,并遇到了 filter 和 map 函数。我以前使用过过滤器,但从未使用过映射,尽管我在 SO 上的各种 Python 问题中都见过这
当我尝试打印 BST 的级别顺序时,这个问题提示了我。 这是一个 Pre-Order Sequence: 4, 1, 2, 3, 5, 6, 7, 8 In_order Sequence : 1, 2
我的代码在 main(序列测试;)的第一行出现错误,指出它是对 sequence::sequence() 的 undefined reference 。我无法更改 main 中的代码。有谁知道我该如何
这可能很简单,但我在通常的 latex 指南中找不到任何相关内容。在这句话中: {\em hello\/} “\/”的目的是什么? 最佳答案 这就是所谓的斜体校正。其目的是确保斜体文本后有适当的间距。
当我从 Postgresql 表中删除所有记录,然后尝试重置序列以在插入时开始一个编号为 1 的新记录时,我得到不同的结果: SELECT setval('tblname_id_seq', (SELE
在版本10.0.3中,MariaDB引入了一种称为序列的存储引擎。 其ad hoc为操作生成整数序列,然后终止。 该序列包含正整数,以降序或升序排列,并使用起始,结束和递增值。 它不允许在多个查询中
如何在 Groovy 中获取给定数字的序列,例如: def number = 169 // need a method in groovy to find the consecutive number
基本上,如果这是 .NET,它看起来像这样: ISomething { string A { get; } int B { get; } } var somethings = new List
说以下代码部分(同一块): A <= 1 A <= 2 变量 A 总是被赋值为 2 吗?还是会出现竞争条件并分配 1 或 2? 我对非阻塞赋值的理解是,由硬件在 future 分配变量 A,因此它可能
在运行 WiX 设置时,我正在寻找操作列表及其顺序。不知何故,官方网站似乎没有提供任何信息。 基本问题是我想正确安排我的自定义操作。通常我需要使用 regsvr32.exe 注册一个 DLL,而这只能
F#初学者在这里 我想创建一个类型,它是具有至少一个元素的另一种具体类型(事件)的序列。任何其他元素都可以在以后随时添加。通常在 C# 中,我会创建一个具有私有(private) List 和公共(p
作为构建过程和不断发展的数据库的一部分,我试图创建一个脚本,该脚本将删除用户的所有表和序列。我不想重新创建用户,因为这将需要比所允许的更多的权限。 我的脚本创建了一个过程来删除表/序列,执行该过程,然
我想恢复两个向量的第一个日期和相同向量的第二个日期之间的日期序列,.... 这是一个例子: dates1 = as.Date(c('2015-10-01', '2015-03-27', '2015-0
这个问题已经有答案了: sql ORDER BY multiple values in specific order? (12 个回答) 已关闭 9 年前。 我有一个 sql 语句,我想要ORDER
我想恢复两个向量的第一个日期和相同向量的第二个日期之间的日期序列,.... 这是一个例子: dates1 = as.Date(c('2015-10-01', '2015-03-27', '2015-0
在用java编写代码时,我需要用“],[”分割字符串。下面是我的代码。 try (BufferedReader reader = new BufferedReader(new InputStreamR
这个问题已经有答案了: Project Euler Question 14 (Collatz Problem) (8 个回答) 已关闭 9 年前。 我正在尝试查找数字的 Collatz 序列。以下
我有一个例程函数process_letter_location(const char& c, string &word)。 在我的 main 中,我声明了一系列字符串变量,如下所示: string s
我需要找到最长的多米诺骨牌链,给定一组 12 个随机挑选的多米诺骨牌。我已经递归地生成了多米诺骨牌的所有可能性(使用 0 到 12 的面值有 91 种可能性)。多米诺骨牌由一 block “砖 blo
我有这个数据结构 Seq,它继承了类 vector 但有一些额外的功能。使用这个数据结构 Seq 我有这个预定义的数据结构: typedef Seq > MxInt2d; 我现在想要一个包含多个 Mx
我是一名优秀的程序员,十分优秀!