M_1_s_t_1_c
New member
- Joined
- Oct 8, 2008
- Messages
- 4
- Programming Experience
- 1-3
I have a test coming up and I have been assigned several practice problems but this one is a different from what we have been over.
Need to create a problem randomizer
-1st Graders receive addition and subtraction problems using numbers 1-10
-2nd Graders receive addition and subtraction problems using numbers 10-99
-They have not learned negative numbers yet
The program needs to keep up with how many problems have been answered correctly and incorrectly. The student should also have a many chances needed to answer the problem correctly (I figured have it where it calculates and then displays the results after the student is finished.)
I figured out I need to use variableName = ranGenerator.Next(1, 11) and variableName = ranGenerator.Next(10, 100)
I don't need the full code...I'm just lost and need a starting point
Need to create a problem randomizer
-1st Graders receive addition and subtraction problems using numbers 1-10
-2nd Graders receive addition and subtraction problems using numbers 10-99
-They have not learned negative numbers yet
The program needs to keep up with how many problems have been answered correctly and incorrectly. The student should also have a many chances needed to answer the problem correctly (I figured have it where it calculates and then displays the results after the student is finished.)
I figured out I need to use variableName = ranGenerator.Next(1, 11) and variableName = ranGenerator.Next(10, 100)
I don't need the full code...I'm just lost and need a starting point