wrong output fix

This commit is contained in:
Digi 2025-03-15 11:25:35 +01:00
parent 4b27a19904
commit 7a7ea27aa6
12 changed files with 10 additions and 12 deletions

View File

@ -28,9 +28,10 @@
"RelativeDocumentMoniker": "Box.cs", "RelativeDocumentMoniker": "Box.cs",
"ToolTip": "E:\\H\u00E1zi\\13.oszt\u00E1ly\\Neumann_Verseny\\fordulo_3\\Doboz\\DobozFeladat\\Box.cs", "ToolTip": "E:\\H\u00E1zi\\13.oszt\u00E1ly\\Neumann_Verseny\\fordulo_3\\Doboz\\DobozFeladat\\Box.cs",
"RelativeToolTip": "Box.cs", "RelativeToolTip": "Box.cs",
"ViewState": "AgIAADEAAAAAAAAAAAAwwFkAAAAZAAAAAAAAAA==", "ViewState": "AgIAAEAAAAAAAAAAAAAwwEoAAAAgAAAAAAAAAA==",
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
"WhenOpened": "2025-03-15T09:00:39.48Z" "WhenOpened": "2025-03-15T09:00:39.48Z",
"EditorCaption": ""
}, },
{ {
"$type": "Document", "$type": "Document",
@ -40,7 +41,7 @@
"RelativeDocumentMoniker": "Program.cs", "RelativeDocumentMoniker": "Program.cs",
"ToolTip": "E:\\H\u00E1zi\\13.oszt\u00E1ly\\Neumann_Verseny\\fordulo_3\\Doboz\\DobozFeladat\\Program.cs", "ToolTip": "E:\\H\u00E1zi\\13.oszt\u00E1ly\\Neumann_Verseny\\fordulo_3\\Doboz\\DobozFeladat\\Program.cs",
"RelativeToolTip": "Program.cs", "RelativeToolTip": "Program.cs",
"ViewState": "AgIAACgAAAAAAAAAAAAcwE8AAABOAAAAAAAAAA==", "ViewState": "AgIAACgAAAAAAAAAAAAAAEgAAAAAAAAAAAAAAA==",
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
"WhenOpened": "2025-03-15T09:00:10.429Z", "WhenOpened": "2025-03-15T09:00:10.429Z",
"EditorCaption": "" "EditorCaption": ""

View File

@ -28,9 +28,10 @@
"RelativeDocumentMoniker": "Box.cs", "RelativeDocumentMoniker": "Box.cs",
"ToolTip": "E:\\H\u00E1zi\\13.oszt\u00E1ly\\Neumann_Verseny\\fordulo_3\\Doboz\\DobozFeladat\\Box.cs", "ToolTip": "E:\\H\u00E1zi\\13.oszt\u00E1ly\\Neumann_Verseny\\fordulo_3\\Doboz\\DobozFeladat\\Box.cs",
"RelativeToolTip": "Box.cs", "RelativeToolTip": "Box.cs",
"ViewState": "AgIAADEAAAAAAAAAAAAwwFkAAAAZAAAAAAAAAA==", "ViewState": "AgIAAEAAAAAAAAAAAAAwwEoAAAAgAAAAAAAAAA==",
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
"WhenOpened": "2025-03-15T09:00:39.48Z" "WhenOpened": "2025-03-15T09:00:39.48Z",
"EditorCaption": ""
}, },
{ {
"$type": "Document", "$type": "Document",
@ -40,7 +41,7 @@
"RelativeDocumentMoniker": "Program.cs", "RelativeDocumentMoniker": "Program.cs",
"ToolTip": "E:\\H\u00E1zi\\13.oszt\u00E1ly\\Neumann_Verseny\\fordulo_3\\Doboz\\DobozFeladat\\Program.cs", "ToolTip": "E:\\H\u00E1zi\\13.oszt\u00E1ly\\Neumann_Verseny\\fordulo_3\\Doboz\\DobozFeladat\\Program.cs",
"RelativeToolTip": "Program.cs", "RelativeToolTip": "Program.cs",
"ViewState": "AgIAACgAAAAAAAAAAAAcwD0AAAAwAAAAAAAAAA==", "ViewState": "AgIAACgAAAAAAAAAAAAAAEoAAAA9AAAAAAAAAA==",
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|", "Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.000738|",
"WhenOpened": "2025-03-15T09:00:10.429Z", "WhenOpened": "2025-03-15T09:00:10.429Z",
"EditorCaption": "" "EditorCaption": ""

View File

@ -71,12 +71,8 @@ namespace DobozFeladat
Boxes.RemoveAll(x => x.ReadyForPackaging()); Boxes.RemoveAll(x => x.ReadyForPackaging());
} }
int length = 0;
foreach (var Box in Boxes) Console.WriteLine($"Maximum length needed: {MaximumLength}");
{
length += Box.PrintBoxRecursively().Count();
}
Console.WriteLine($"Maximum length needed: {length}");
Console.WriteLine($"Total box place needed: {TotalBoxPlaceUsed}"); Console.WriteLine($"Total box place needed: {TotalBoxPlaceUsed}");
} }