回答編集履歴
1
修正
test
CHANGED
@@ -26,11 +26,11 @@
|
|
26
26
|
|
27
27
|
string line = Console.ReadLine();
|
28
28
|
|
29
|
-
Console.WriteLine(new string('+', line.Length +
|
29
|
+
Console.WriteLine(new string('+', line.Length + 2));
|
30
30
|
|
31
31
|
Console.WriteLine($"+ {line} +");
|
32
32
|
|
33
|
-
Console.WriteLine(new string('+', line.Length +
|
33
|
+
Console.WriteLine(new string('+', line.Length + 2));
|
34
34
|
|
35
35
|
}
|
36
36
|
|