Increased desired chance of success for lock population
This commit is contained in:
parent
03f0f7859e
commit
8de86aa1ac
6 changed files with 11 additions and 2 deletions
|
|
@ -1,4 +1,13 @@
|
||||||
using DiceProbabilities;
|
using DiceProbabilities;
|
||||||
|
|
||||||
Console.WriteLine(DiceRollProbability.RollFourPickTwoPickTwoAgainOdds());
|
string input = Console.ReadLine();
|
||||||
|
while (input != "")
|
||||||
|
{
|
||||||
|
|
||||||
|
List<string>? inputtedOptions = input?.Split(',').ToList();
|
||||||
|
float odds = RollFourSumTwo.GetProbalityOfAtleastOneUnlocking(inputtedOptions);
|
||||||
|
Console.WriteLine(odds);
|
||||||
|
input = Console.ReadLine();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -11,7 +11,7 @@ namespace DiceProbabilities
|
||||||
{"=", .6296f },
|
{"=", .6296f },
|
||||||
{"2", .1319f},
|
{"2", .1319f},
|
||||||
{"3", .2330f},
|
{"3", .2330f},
|
||||||
{"4", 3557f},
|
{"4", .3557f},
|
||||||
{"5", .4475f},
|
{"5", .4475f},
|
||||||
{"6", .5610f},
|
{"6", .5610f},
|
||||||
{"7", .6435f},
|
{"7", .6435f},
|
||||||
|
|
|
||||||
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue