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 trialDavid Lafuente Martín
Courses Plus Student 39 PointsError 74?
I have copied the code from the last exercice and even that there is an error that I am not able to catch.
// I have setup a java.io.Console object for you named consoleimport java.io.Console;
public class Name {
public static void main(String[] args) {
String firstName = "POROPOPOCHITA";
Console console = System.console();
// Welcome to the Introductions program! Your code goes below here
console.printf("TE AMO %s BELLA TAMBIÉN EN LOS CÓDIGOS!!!\n", firstName);
}
}
2 Answers
Krishna Pratap Chouhan
15,203 PointsNo need to add class and function definition.
see comments in the code for details.
// I have setup a java.io.Console object for you named console
//task1:
String firstName = "POROPOPOCHITA";
//task2:
//console.printf("POROPOPOCHITA" + "can code in java");
//or
//console.printf("%s can code in java", "POROPOPOCHITA");
//task3:
//console.printf(firstName + "can code in java");
//or
console.printf("%s can code in java", firstName);
Remember, while running the final-task-3, remove extra code and only run:
// I have setup a java.io.Console object for you named console
//task1:
String firstName = "POROPOPOCHITA";
console.printf("%s can code in java", firstName);
David Lafuente Martín
Courses Plus Student 39 PointsThanks for the answer.
Now I've got it.