回答編集履歴
1
修正
answer
CHANGED
@@ -12,9 +12,9 @@
|
|
12
12
|
private static void Main(string[] args)
|
13
13
|
{
|
14
14
|
string line = Console.ReadLine();
|
15
|
-
Console.WriteLine(new string('+', line.Length +
|
15
|
+
Console.WriteLine(new string('+', line.Length + 2));
|
16
16
|
Console.WriteLine($"+ {line} +");
|
17
|
-
Console.WriteLine(new string('+', line.Length +
|
17
|
+
Console.WriteLine(new string('+', line.Length + 2));
|
18
18
|
}
|
19
19
|
}
|
20
20
|
}
|