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 trialayub ali
Courses Plus Student 723 Pointsi am having a little bit problem to pass this quiz of the java program,
this is the exercise they want me to pass; java this is the question, Define a string variable called firstName that stores and the value
import java.io.Console;
public class Name{
public static void main(String[] args){
// i am defining a string varible named fristName that stores my Name
Console console = System.console();
String firstName = "Ayub";
console.printf(" my name is %s", firstName);
console.printf("%s is my first name", firstName);
}
}
2 Answers
Alex Bratkovskij
5,329 PointsThe teacher prepared all the framework for you, you dont need to construct a class, it is all done for you. what the challenge expects is to just enter
String firstName = "Myname";
Alex Bratkovskij
5,329 Pointsany time
ayub ali
Courses Plus Student 723 Pointsayub ali
Courses Plus Student 723 Pointsthank you sir