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 trialChristopher Bullington
740 Pointsa bunch of errors i can't fx
i'm running the command that supposed to result in 12 "chomps", but i got these errors and can't find the issue
Example.java:17: error: illegal start of type
while (dispenser.dispense()) {
^
Example.java:17: error: <identifier> expected
while (dispenser.dispense()) {
^
Example.java:17: error: ';' expected
while (dispenser.dispense()) {
^
Example.java:17: error: illegal start of type
while (dispenser.dispense()) {
^
Example.java:17: error: <identifier> expected
while (dispenser.dispense()) {
^
Example.java:17: error: ';' expected
while (dispenser.dispense()) {
^
Example.java:18: error: illegal start of type
System.out.println("Chomp!");
^
Example.java:18: error: ';' expected
System.out.println("Chomp!");
^
Example.java:18: error: invalid method declaration; return type required
System.out.println("Chomp!");
^
Example.java:18: error: illegal start of type
System.out.println("Chomp!");
^
Example.java:20: error: class, interface, or enum expected
if (dispenser.isEmpty()) {
^
Example.java:22: error: class, interface, or enum expected
}
^
Richard Lu
20,185 PointsI've formatted your code for better readability. For future reference, you can embed your code like this:
```java
code inside here
```
good luck! :)
1 Answer
Kevin Faust
15,353 PointsThe only mistake I see is here:
if (!dispenser.isEmpty()) // >>>>>> { <<<<<<
System.out.println("It is no longer empty");
}
You forgot an opening curly brace for your if statement
I couldn't see anything else wrong so let me know if that fixed it!
Kevin
Christopher Bullington
740 PointsChristopher Bullington
740 Pointshere's my code :