Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialRaymond Yam
Courses Plus Student 345 PointsI am trying to print the word Hello, yet I was unable to do so. I have used all formats and included double quotation.
class Program { static void Main() { // Prompt the user for the word "Hello" System.Console.Write("Hello: "); // Print Hello } }
Am I supposed to just put System.Console.Write("Hello: ") here? I used both formats but it is keep giving me an error. Please help.
class Program
{
static void Main()
{
// Prompt the user for the word "Hello"
System.Console.Write("Hello: ");
// Print Hello
}
}
1 Answer
Steven Parker
231,210 PointsThe challenge instructions are: "Write the word "Hello"
to the console in the code provided below.". And it provides this starter code:
System.Console.Write();
So all you need to do is add the word as an argument to the call. You will not create a complete program structure around it. And be sure to use the word exactly as given with no punctuation.
Iskander Ismagilov
13,298 PointsIskander Ismagilov
13,298 PointsUse only the command to write "Hello" and don't forget semicolon.