0
First quiz c#
Please I don't understand using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Code_Coach_Challenge { class Program { static void Main(string[] args) { //tu código va aquí Console.WriteLine ("Knowledge is power"); } } } No entry error. Why?
3 Respostas
+ 6
You're missing a `.` at the end
Console.WriteLine("Knowledge is power.");
+ 1
Console.WriteLine("Knowledge is power"); you should coding like this
0
Why is there a different language in the console.writeline statement and your missing the brackets and quotation marks, or did you assign that later on(sorry I'm new to c#)