Skip to content

Commit

Permalink
Merge pull request #5 from Mijo-Software/202112122305
Browse files Browse the repository at this point in the history
202112122305
  • Loading branch information
mjohne authored Dec 12, 2021
2 parents fb66e3d + bec7639 commit 017942b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
4 changes: 2 additions & 2 deletions EulerBrick.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
<PackageLicenseFile>C:\Users\mj-pr\OneDrive\Documents\unlicense.txt</PackageLicenseFile>
<Authors>Mijo Software</Authors>
<PackageProjectUrl>https://mijo-software.de</PackageProjectUrl>
<PackageReleaseNotes>1.0.2.3</PackageReleaseNotes>
<Version>1.0.2.3</Version>
<PackageReleaseNotes>1.1.0.4</PackageReleaseNotes>
<Version>1.1.0.4</Version>
<IsPublishable>False</IsPublishable>
</PropertyGroup>

Expand Down
12 changes: 11 additions & 1 deletion Program.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
ulong
//string length;

ulong
n = 0, i = 0,
a_min = 1, b_min = 1, c_min = 1,
a_max = 1000, b_max = 1000, c_max = 1000;

double d, e, f, g;

Console.WriteLine("EulerBrick");
Console.Write("Input the length of the run: ");
string length = Console.ReadLine();
if (ulong.TryParse(s: length, result: out a_max))
{
b_max = c_max = a_max;
}

for (ulong a = a_min; a < a_max; a++)
{
for (ulong b = b_min; b < b_max; b++)
Expand Down

0 comments on commit 017942b

Please sign in to comment.