This and this are the solution and visualization from Visual Logic.
Here is where I am getting stuck in Visual Studio.
for (int lineCount = 1; lineCount <= 19; lineCount++)
{
for (int spaceCount = 18; spaceCount >= lineCount; spaceCount--)
{
Console.Write(" ");
spaceCount--;
}
for (int circleCount = 1; circleCount <= lineCount; circleCount++)
{
Console.Write("o");
}
Console.WriteLine();
lineCount++;
}
int count = 1;
for (int lineCount = 1; lineCount <= 19; lineCount++)
{
for (int spaceCount = 1; spaceCount <= lineCount; spaceCount++)
{
spaceCount++;
Console.Write(" ");
}
for (int circleCount = count; count <= 17; count++)
{
Console.Write("o");
}
lineCount++;
Console.WriteLine();
count++;
}
Are any of you fine folks able to throw me a bone as to what I am missing?

New Topic/Question
Reply


MultiQuote



|