I am new to C#. While displaying text, C# prints every piece of text in a new line. But, I would like have all the pieces in the same line like Four Hundred Fifty Eight
Four Hundred Fifty Eight
Assuming you're using Console.WriteLine(), all you need to do is use Console.Write() instead.
Console.WriteLine()
Console.Write()