c 语言 两个编程小题目 望解答!Write a program that simulates the rolling of two dice. The program should use rand to roll the first die and should use rand again to roll the second die. The sum of the two values should then be calculated.

来源:学生作业帮助网 编辑:六六作业网 时间:2024/05/03 20:16:12
c语言两个编程小题目望解答!Writeaprogramthatsimulatestherollingoftwodice.Theprogramshoulduserandtorollthefirstdie

c 语言 两个编程小题目 望解答!Write a program that simulates the rolling of two dice. The program should use rand to roll the first die and should use rand again to roll the second die. The sum of the two values should then be calculated.
c 语言 两个编程小题目 望解答!

Write a program that simulates the rolling of two dice. The program should use rand to roll the first die and should use rand again to roll the second die. The sum of the two values should then be calculated. Note: Each die can show an integer value from 1 to 6, so the sum of the two values will vary from 2 to 12.

Figure: 36 Combinations of 2 dice

There are 36 possible combinations of the two dice. Your program should roll the two dice 36,000 times. Use a one-dimensional array to tally the numbers of times each possible sum appears. Print the results in a tabular format. Also, determine if the totals are reasonable (i.e., there are six ways to roll a 7, so approximately one-sixth of all the rolls should be 7).
请大神们解答!


c 语言 两个编程小题目 望解答!Write a program that simulates the rolling of two dice. The program should use rand to roll the first die and should use rand again to roll the second die. The sum of the two values should then be calculated.

我来说一下题目的意思吧:

投掷色子 36000次

每次投掷2个,并计算两个色子的点数和

最后会发现点数和为7的次数最多


思路

写一个投掷两个色子的程序

写一个6*6的色子结果数组,对应两个色子出现的情况,

如1,1 对应 a[0][0]

如4,6 对应 a[3][5]

  3.  按副斜对角线方向计算点数和

        示例

        2 3 4 5 6 7

        3 4 5 6 7 8

        4 5 6 7 8 9

        ..

c 语言 两个编程小题目 望解答!Write a program that simulates the rolling of two dice. The program should use rand to roll the first die and should use rand again to roll the second die. The sum of the two values should then be calculated. C语言编程问题,求Fibonacci数列题目要求如图所示.. c语言编程求两个正整数的最大公约数和最小公倍数! C语言编程题C语言编程:输入两个正整数m和n,求其最大公约数和最小公倍数 单片机编程题目如题,用汇编语言.用C语言也可以,什么语言都行, 一道用C语言编程计算积分的题目,求大神解答!可追分.一道用C语言编程的计算积分题目.用C语言进行3.14和3.15的数值计算,3.14中求使式子等于0 的x.其中n1是整数,其余都是分数.(0<p<a1/b1,X>=a C语言编程求解释 C语言编程题 -5 C语言编程 任意输入两个日期,计算两个日期之间的天数 C语言题目:编程输出如下图案 一个* 三个* 五个* 七个* 五个* 三个* 一个* C语言编程题目 循环语句 int n=0;while(n++ 输入一个3位数,判断是否是“水仙花数”C语言题目! 写出编程和流程图. C语言编程设计题目...1到50中能被7整除的所有自然数的和 C语言题目,求解答并解释,谢谢 C语言题目,求高手解答我需要正确答案 谢谢 编程实现两个N*N矩阵相乘,并输出实验结构矩阵元素为整型数据.用c语言编程 C语言程序编程中如果把小括号写成中括号会怎样 C语言编程:输入两个正整数m和n,求其最大公约数和最小公倍数,