以下是整个问题。
编写一个程序,模拟掷两个骰子。程序应该使用 rand 来滚动第一个骰子,并且应该再次使用 rand 来滚动第二个骰子。然后应计算两个值的总和。[注意:每个骰子可以显示一个从 1 到 6 的整数值,因此这两个值的和将在 2 到 12 之间变化,其中 7 是最频繁的和,2 和 12 是最不频繁的和。] 注意有是两个骰子的 36 种可能组合。你的程序应该掷两个骰子 3,600 次。使用一维数组计算每个可能的和出现的次数。以表格格式打印结果。此外,确定总数是否合理(即,有六种方法可以掷出 7,因此大约六分之一的掷出应该是 7)。
结果应如下所示:
Question 2
Please enter the seed : 2
我不知道如何生成“预期”列。
这是我的程序:(主要是 Q2_main())
#include <iostream>
#include <iomanip>
#include <cstdlib>
using namespace std;
double total_Array[11];
double expected_Array[11];
double actual_Array[11];
int seed;
void initialization_of_Array()
{
for (int counter=0; counter < 12; counter++)
{
total_Array[counter] = 0;
expected_Array[counter] = 0;
actual_Array[counter] = 0;
}
}
void show_heading_line()
{
cout << setw(5) << "Sum"
<< setw(10) << "Total"
<< setw(17) << "Expected"
<< setw(16) << "Actual"
<< endl;
}
void show_Data_Results_line(int sum, int total, double expected, double actual)
{
cout << setw(5) << sum
<< setw(10) << total
<< setw(16) << expected << "%"
<< setw(15) << actual << "%"
<< endl;
}
void calculation_of_total()
{
int die_1, die_2;
for (int counter = 1; counter <= 3600; counter++)
{
die_1 = 1 + rand() % 6;
die_2 = 1 + rand() % 6;
total_Array[((die_1 + die_2)-2)]++;
}
}
void calculation_of_expect()
{
}
void calculation_of_actual()
{
for (int counter = 0; counter < 11; counter++)
{
actual_Array[counter] = (total_Array[counter] / 3600.0) * 100.0;
}
}
void rollDice_Operation()
{
calculation_of_total();
calculation_of_expect();
calculation_of_actual();
}
void print_Result()
{
show_heading_line();
for (int counter = 0; counter <= 10; counter++)
{
show_Data_Results_line((counter+2), total_Array[counter], 1, actual_Array[counter]);
}
}
void Q2_main()
{
cout << setprecision(3) << fixed;
initialization_of_Array();
cout << "Please enter the seed : ";
cin >> seed;
srand(seed);
rollDice_Operation();
print_Result();
}
任何人都可以给我一些提示来处理“预期”列吗?
感谢您的关注