need immediate assistance please

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
Dr_Spencer

need immediate assistance please

Post by Dr_Spencer »

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, with 7 being the most frequent sum and 2 and 12 being the least frequent sums.]. The program should roll two dice 36,000 times. Use a single-subscripted array to tally the numbers of times each possible sum appears. Print the result in the tabular format. Also, determine if the total are reasonable (i.e., there are six ways to roll 7, so approximately one sixth of all the rolls should be 7).
  ANY ONE PLEASE HELP ME OUT OF THIS C++.......I NEED IMMEDIATE ASSISTANCE. THANKS FOR HELPING.
VE3MTM

RE:need immediate assistance please

Post by VE3MTM »

Unless you want the program to run in real mode and boot off a floppy disc, this is the wrong monsage board for that
Anton

RE:need immediate assistance please

Post by Anton »

:) I should also add that instead of rand(), hardware support should be used(like in modern intel chipsets) and the program should run in pmode, since real mode is to easy for the given problem :).
Anton.
User avatar
df
Member
Member
Posts: 1076
Joined: Fri Oct 22, 2004 11:00 pm
Contact:

RE:need immediate assistance please

Post by df »

you really should do your own homework.
-- Stu --
VoidLogic

RE:need immediate assistance please

Post by VoidLogic »

Good problem solving tech. is important, i mean if you can't figure how to fix a dice program by yourself, how will you ever to much harder things like debug a OS. :)
if you really new help (no not people writing code for you) check out the C++ MSN community. Also, i'll do your HW, for the right price :)!

-VoidLogic
Post Reply