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 trialAlexander Haug
1,237 PointsCan`t find the problem in the code.
I have a problem with the code and i cant seem to fint the problem. The code i have written is excacly the same at in the video. Been sitting for hours trying to fix it and tryed to restart the workspace. Still the same problem. Hope somone can help me out :)
I get this problem when trying to run the code:
Hangman.java:7: error: cannot find symbol
boolean isHit = prompter.promptForGuess();
^
symbol: method promptForGuess()
location: variable prompter of type Prompter
1 error
THE CODE:
Hangman.java
public class Hangman {
public static void main(String[] args) { // Your incredible code goes here... Game game = new Game("treehouse"); Prompter prompter = new Prompter(game); boolean isHit = prompter.promptForGuess(); if(isHit){ System.out.println("We got a hit"); } else{ System.out.println("Ooops missed"); } } }
Game.java
class Game{
private String answer; private String hits; private String misses;
public Game(String answer){ this.answer = answer; hits = ""; misses = ""; }
public boolean applyGuess(char letter) { boolean isHit = answer.indexOf(letter) != -1; if (isHit){ hits += letter; } else { misses += letter; } return isHit; }
}
Prompter.java
import java.util.Scanner;
class Prompter{ private Game game;
public Prompter(Game game) { this.game = game; }
public boolean promtForGuess(){ Scanner scanner = new Scanner(System.in); System.out.print("Enter a letter: "); String guessInput = scanner.nextLine(); char guess = guessInput.charAt(0); return game.applyGuess(guess); } }
2 Answers
Seth Kroger
56,413 PointsYou made a typo in naming your promptForGuess() method in Prompter.java (missing the 2nd p).
Alexander Haug
1,237 Pointsthankyou very much. I found the problem 2 minutes after i posted :)