Hello, I’m working on this task:
Write a program that outputs numbers 23, 669 and 131 to the screen, each from the new line.
Here is my code:
using System;
public static class TurnOffDroids
{
public static void Main()
{
Console.WriteLine(23);
Console.WriteLine(699);
Console.WriteLine(131);
}
}
Can anyone please help me to solve it?