C# DrawPyramid in Microsoft Visual Studio
Why does the same code look different when I run it in Visual Studio than on the online platform? This code: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SoloLearn { class Program { static void DrawPyramid(int n) { for (int i=1; i<=n; i++) { for (int j=i; j<=n; j++) { Console.Write(" "); } for (int k=1; k<=2*i-1; k++) { Console.Write("*"+" "); } Console.WriteLine(); } } static void Main(string[] args) { DrawPyramid(5); } } } Outputs this on the Code playground: * * * * * * * * * * * * * * * * * * * * * * * * * And this in the Visual Studio: * * * * * * * * * * * * * * * * * * * * * * * * * Someone could tell me why is this?