cis355_lab5_guesscount cis355_lab5_guessgame_output cis355_lab5_textfileio_output
Please note: This is only a word document with the codes and screen shots. Please re-code in your own program.
STEP 1: GuessGame (20 points) |
Write a program named GuessGame.java that plays the game “guess the number” as follows: Your program chooses the number to be guessed by selecting an integer at random in the range 1–1000. The program then displays the following in a label.
I have a number between 1 and 1000 — can you guess my number?
Please enter your guess: ____________________
A JTextField should be used to input the guess. A JButton must be provided to allow the user to press each time a guess is entered. As each guess is input, the background color should change to either red or blue. Red indicates that the user is getting warmer, and blue indicates that the user is getting colder. A JLabel should display either Too High or Too Low to help the user zero in on the correct answer. When the user gets the correct answer, Correct! should be displayed, and the JTextField used for input should be cleared and changed to be uneditable. Also, a JButton should be provided to allow the user to play the game again. When the New Game JButton is clicked, a new random number should be generated and the input JTextField changed to be editable. A JButton must be provided to allow the user to exit the application. Also provide a count of the number of guesses the user entered when the correct number is guessed.
Grading Rubric
GuessGamePointsDescriptionStandard header included1Must contain program’s name, student name, and description of the programProgram compiles1Program does not have any errorProgram executes1Program runs without any errorGUI contains the required labels2GUI contains the label with the initial question, the label for the input field, and the label for the Too high or Too low messageGUI contains input text field for the guess2GUI contains the input field for entering the guessGUI contains the Guess, New Game, and Exit buttons3GUI contains the Guess button, New Game button, and Exit buttonEach button handles the corresponding events properly6Each button handles and processes its corresponding behaviorProgram displays the correct output4Program displays the correct messages, changes the colors appropriately, and displays the count of guessesSubtotal20
STEP 2: Text File I/O (20 points) |
Write a program called TextFileIO.java to create a file named numbers.dat. Then create an algorithm that writes all even numbered integers from 1 to 100, separated by a comma. After the file has been created, close and reopen the file and display the results to the screen. After the results have been displayed append the odd number integers from 1 to 100, separated by a comma to the end of the file. Reopen the file and display the results. The contents of the file should be the even numbers from 1 to 100 separated by a comma followed by the odd number from 1 to 100 separated by a comma. The output of this program would be something like the following
2,4,6,8,10,12,14,……,98,100 2,4,6,8,10,12,14,……,98,100,1,3,5,7,9,……..97,99
Grading RubricText File I/OPointsDescriptionStandard header included1Must contain program’s name, student name, and description of the programProgram compiles2Program does not have any errorProgram executes2Program runs without any errorProgram creates “numbers.dat” file2The file numbers.dat exists and is readableProgram writes all even number integers from 1 to 100, separated by commas2All even numbers from 1 to 100 are written to the file. A comma separates each number.File is closed1The file is closed after even numbers are processedFile is re-opened for reading1The file is re-opened for reading the even numbers and commasProgram displays even integers1Program displays even numbers from 1 to 100 separated by commasOdd numbers from 1 to 100 separated by commas are appended2Odd numbers from 1 to 100 are appended to the file. A comma separates each number.File is closed1The file is closed after odd numbers are processedFile is re-opened for reading1The file is re-opened for reading the even and odd numbers separated by commasFile contents are displayed1The contents of the file are displayed correctly, showing each number separated by a commaCorrect output is displayed5Program displays the correct output as described aboveSubtotal20