- 4,567
- Posts
- 2
- Years
- He/Him
- Planet Earth
- Seen today
Hello everyone! I figured I'd finally try my hand at making a game; the rules are as follows.
1. The list of operations is addition, subtraction, multiplication and division. These are always used in the same order in a loop.
2. Take the number above and perform the next operation in the list; using your current post count as the other number in the equation.
3. Round to a maximum of 2 decimal places if needed.
4. The result is the new number to be used in the next operation.
5. In the rare case you'd have to divide by 0, skip it and go straight from multiplication to addition.
Example:
Starting Number: 237
Person A (post count 56)
Person B (post count 32)
Person C (post count 987)
Person A: 237 + 56 = 293
Current Number: 293
Person B: 293 - 36 = 257
Current Number: 257
Person C: 257 * 987 = 253,659
And so on...
The first number is: 1000
1. The list of operations is addition, subtraction, multiplication and division. These are always used in the same order in a loop.
2. Take the number above and perform the next operation in the list; using your current post count as the other number in the equation.
3. Round to a maximum of 2 decimal places if needed.
4. The result is the new number to be used in the next operation.
5. In the rare case you'd have to divide by 0, skip it and go straight from multiplication to addition.
Example:
Starting Number: 237
Person A (post count 56)
Person B (post count 32)
Person C (post count 987)
Person A: 237 + 56 = 293
Current Number: 293
Person B: 293 - 36 = 257
Current Number: 257
Person C: 257 * 987 = 253,659
And so on...
The first number is: 1000