help
Root Question Message
--+--+--
line? Make that work as you vary N
.| |
. Get that working| |
lines, then a --+--+--
line, etcfor (int i = 0; i < n; i++)
{
Console.Write("-");
}
Console.WriteLine("+");
for (int i = 0; i < n; i++)
{
Console.Write("-");
}
Console.WriteLine("+");
for (int i = 0; i < n; i++)
{
Console.Write("-");
}
Console.WriteLine();
Console.Write(new string('-', n);
Console.Write("+");
Console.Write(new string('-', n);
Console.Write("+");
Console.Write(new string('-', n);
Console.WriteLine();
--+--+--
lines)