This community-built FAQ covers the “Semicolons and Whitespace” exercise from the lesson “Hello World: Java”.
Paths and Courses
This exercise can be found in the following Codecademy content:
Learn Java
FAQs on the exercise Semicolons and Whitespace
There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply (
) below.
If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.
Join the Discussion. Help a fellow learner on their journey.
Ask or answer a question about this exercise by clicking reply (
) below!
Agree with a comment or answer? Like (
) to up-vote the contribution!
Need broader help or resources? Head here.
Looking for motivation to keep learning? Join our wider discussions.
Learn more about how to use this guide.
Found a bug? Report it!
Have a question about your account or billing? Reach out to our customer support team!
None of the above? Find out where to ask other questions here!
how can the output be in different lines without an endline?
Hello, @blog8647988822. The output appears on different lines because of the println()
method. It prints its arguments on a new line each time it’s called. If we used print()
everything would be on the same line. See below:
public class LanguageFacts {
public static void main(String[] args) {
// Press enter or return on your keyboard after each semicolon!
System.out.println("Java is a class-based language.");
System.out.println("Java classes have a 'main' method.");
System.out.println("Java statements end with a semicolon.");
System.out.println("Programming is useful and fun!");
System.out.print("Hi");
System.out.print(" there");
System.out.print(", Buddy!");
}
}
Output:
Java is a class-based language.
Java classes have a ‘main’ method.
Java statements end with a semicolon.
Programming is useful and fun!
Hi there, Buddy!
Hope this helps!
1 Like
hello. please you help me out. I was learning about whitespaces and semicolons and there was an excercise given to me to do
this is the excercise given to me:
1.
The LanguageFacts.java file prints information about Java to the screen.
Unfortunately, the writer of the file has avoided using whitespace.
Make the file easier to read by adding a newline after each statement!
2.
Inside main()
, add a new statement printing how you feel about coding.
Start the message with: “Programming is… “.
Remember to place a semicolon at the end of the statement!
I successfully did the first one but the second one is giving me problems.
Kindly help me out.
Thanks
Hello, @array7348921201.
Welcome to the forums.
My post above shows the correct syntax for printing statements to the screen. Not sure what other help I can offer without seeing your code. If you’d like to paste your code in a post, please follow these guidelines: How do I format code in my posts?
Hi everyone, I’m completely new here and I’ve been scratching my head on the second part of 4/7 for about 30mins now. I think what confused @array7348921201 is the same thing that confused me :
“Inside main()” made me think the “Programming is…” had to be in between the ().
@midlindner answer to the previous message made me realise that what we have to write is inside main() method, which means in between {} after the main() and not actually in between the (). Hope that helps.
Hello!
I was also stuck on the second portion of the problem, the fact that it said to enter a statement between “main()” confused me because I thought I had to replace the original statements about Java with my own. (But as an above comment states, it appears as if “main()” is just the block of text within the curly braces {}).
The correct answer however is to simply write your own System.out.println in line 4. This line should look just like the other lines, but with your own message (for example: “Programming is challenging, but fun!”
Hope this helps!
Hello I am having trouble with this seemingly simple exercise. I don’t want to peek at the solution every time I’m stuck. I believe I typed my comment correctly, yet the compiler keeps complaining (it doesn’t seem to like my semicolon). I tried pressing Enter after the semicolon. Then I tried not pressing Enter after the semicolon. Nothing is working. What do I need to do to correct this?:
public class LanguageFacts {
public static void main(String args) {
// Press enter or return on your keyboard after each semicolon!
System.out.println("Java is a class-based language.");
System.out.println("Java classes have a 'main' method.");
System.out.println("Java statements end with a semicolon.");
System.out.printIn("Programming is frustrating!"); //My statement
}
}
}
Error message is: LanguageFacts.java:8: error: cannot find symbol
System.out.printIn(“Programming is frustrating!”);
^
symbol: method printIn(String)
location: variable out of type PrintStream
1 error
I don’t think it’s a problem with your semicolons; they look fine.
Double-check this line. You’ve misspelled println
as printIn
.
Welcome to the forums!
You have typed I (eye) instead of l (L) in print statement. That is why it is not able to find the respective method. Correct that and your code will work.
I’m back at the beginning again–for the 3rd time over a period of about 3 months! I got up to strings this time before getting totally frustrated. Any advise?
I dont understand what is problem. #2 it wasnt completed
The course is marking the second step to the whitespace and semicolons practical test as wrong but the terminal is showing up correct and I don’t see anything wrong with the lesson. If I did something wrong, please help me correct it:
public class LanguageFacts {
public static void main(String[] args) {
// Press enter or return on your keyboard after each semicolon!
System.out.println("Java is a class-based language.");
System.out.println("Java classes have a 'main' method.");
System.out.println("Java statements end with a semicolon.");
System.out.println("Programing is what I love to do"); //My Statement
}
}
Thanks!
EDIT: Found the issue. Misspelled Programming (one M instead f 2)
Spoke with another coder friend of mine for help. You made the same mistake I did. These programs can be nitpicky about spelling.
We both spelt Programming wrong (with one M instead of 2)! Hope this helps you! xD