Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6874971
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T04:15:43+00:00 2026-05-27T04:15:43+00:00

I’m asking this as a very last resort as I have not been able

  • 0

I’m asking this as a very last resort as I have not been able to find any help concerning the issue I’m having with this Random Number Game.

The issue is that when I try to run the program, there is an error in the ActionListener that says that “guessResult cannot be resolved”.

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.util.Random;

public class Project8 extends JFrame
{
private JTextField numGuessFld;
private JButton guessBtn, guessAgainBtn, playAgainBtn;
private int randNum;
private Container c = getContentPane();
private int numGuessed;
private Random rn = new Random();



public static void main(String[] args) 
{
    Project8 frm = new Project8();
    frm.setSize(400,150);
    frm.setVisible(true);
    frm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);     
}//end main

public Project8()
{
    c.setLayout(new FlowLayout());
    setTitle("Number Guessing Game");

    JLabel gameDescriptLbl = new JLabel("I have a number between 1 and 1000.  Can you guess my number?");
    c.add(gameDescriptLbl);

    JLabel numGuessLbl = new JLabel("Please enter your first guess. ");
    c.add(numGuessLbl);

    numGuessFld = new JTextField(4);
    c.add(numGuessFld);

    guessBtn = new JButton("Guess");
    c.add(guessBtn);

    guessAgainBtn = new JButton("Guess Again");
    guessAgainBtn.setEnabled(false);
    c.add(guessAgainBtn);

    playAgainBtn = new JButton("Play Again?");
    playAgainBtn.setEnabled(false);
    c.add(playAgainBtn);

    JLabel guessResult = new JLabel("");
    c.add(guessResult);

    Handler handler = new Handler();

    numGuessFld.addActionListener(handler);
    guessBtn.addActionListener(handler);
    guessAgainBtn.addActionListener(handler);
    playAgainBtn.addActionListener(handler);

    randNum = rn.nextInt(1000)+1;
}//end constructor Project8

private class Handler implements ActionListener
{       
    public void actionPerformed(ActionEvent e)
    {           
        if (e.getSource() == guessBtn)
        {               
            String input = numGuessFld.getText();
            numGuessed = Integer.parseInt(input);
            System.out.println(numGuessed);
            System.out.println(randNum);                

            if (numGuessed < randNum)
            {
                c.setBackground(Color.blue);                    
                guessResult.setText("Too low!");
                guessAgainBtn.setEnabled(true);                     
            }
            else if (numGuessed > randNum)
            {
                c.setBackground(Color.red);
                guessResult.setText("Too high!");                   
                guessAgainBtn.setEnabled(true);                 
            }
            else if (numGuessed == randNum)
            {
                c.setBackground(Color.yellow);
                guessResult.setText("Correct!");                    
                guessAgainBtn.setEnabled(false);
                guessBtn.setEnabled(false);
                numGuessFld.setBackground(Color.green);
                numGuessFld.setEditable(false);
                playAgainBtn.setEnabled(true);                  
            }   

        }//end guessBtn if          

        if (e.getSource() == guessAgainBtn)
        {
            numGuessFld.setText("");

        }//end guessAgainBtn if

        if (e.getSource() == playAgainBtn)
        {
            c.setBackground(null);
            numGuessFld.setText("");                
            guessAgainBtn.setEnabled(false);
            guessBtn.setEnabled(true);
            numGuessFld.setBackground(null);
            numGuessFld.setEditable(true);
            playAgainBtn.setEnabled(false); 
            randNum = rn.nextInt(1000)+1;
        }//end playAgainBtn if          
    }//end ActionPerformed
}//end Handler
}//end Project8

any help would be greatly appreciated…especially if it arrives before 4:30 🙂 Thank you!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T04:15:44+00:00Added an answer on May 27, 2026 at 4:15 am

    You have a scoping issue. Try making guessResult a member variable, not a local variable.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I have a jquery bug and I've been looking for hours now, I can't
this is what i have right now Drawing an RSS feed into the php,
I have this code to decode numeric html entities to the UTF8 equivalent character.
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString
This could be a duplicate question, but I have no idea what search terms
I have a .ini file as follows: [playlist] numberofentries=2 File1=http://87.230.82.17:80 Title1=(#1 - 365/1400) Example
I have just tried to save a simple *.rtf file with some websites and
link Im having trouble converting the html entites into html characters, (&# 8217;) i

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.