Critical Thinking Assignment #6: Java Program #6 of 6 (70 Points)

Similar documents
DEMYSTIFYING PROGRAMMING: CHAPTER FOUR

DEMYSTIFYING PROGRAMMING: CHAPTER SIX METHODS (TOC DETAILED) CHAPTER SIX: METHODS 1

SINGLE EVENT HANDLING

To gain experience using GUI components and listeners.

CSE 1325 Project Description

CS 209 Spring, 2006 Lab 8: GUI Development Instructor: J.G. Neal

CS Exam 1 Review Suggestions

CSE Lab 8 Assignment Note: This is the last lab for CSE 1341

CS 201 Advanced Object-Oriented Programming Lab 6 - Sudoku, Part 2 Due: March 10/11, 11:30 PM

GUI Forms and Events, Part II

CS Fall Homework 5 p. 1. CS Homework 5

Example: CharCheck. That s It??! What do you imagine happens after main() finishes?

AP CS Unit 11: Graphics and Events

Part I: Learn Common Graphics Components

1.00/1.001 Introduction to Computers and Engineering Problem Solving. Quiz 2: April 16, 2004

1.00 Introduction to Computers and Engineering Problem Solving. Quiz 2: April 16, 2004

CoSc Lab # 6 (The Model) Due Date: Part I, Experiment classtime, Tuesday, Nov 6 th, 2018.

Project 3. For this set of projects for the course, we wish to simulate some of the aspects of a number of Sea Ports.

Lab 3. A Multi-Message Reader

DEMYSTIFYING PROGRAMMING: CHAPTER TEN REPETITION WITH WHILE-LOOP (TOC DETAILED)

CS 134 Programming Exercise 7:

Chapter 1. Introduction to Programming and Visual Basic Pearson Addison-Wesley. All rights reserved. Addison Wesley is an imprint of

CS 170 Java Programming 1. Week 15: Interfaces and Exceptions

CS 209 Spring, 2006 Lab 11: Files & Streams Instructor: J.G. Neal

Java Programming Assignment Introduction to Information Technology/G 4478/8936

Dynamic Event Handling

CS 209 Programming in Java #10 Exception Handling

CSE 143: Computer Programming II Summer 2015 HW6: 20 Questions (due Thursday, August 13, :30pm)

Introduction. Introduction

CSE 143: Computer Programming II Spring 2015 HW7: 20 Questions (due Thursday, May 28, :30pm)

ITEC 120 4/14/11. Review. Need. Objectives. GUI basics JFrame JPanel JLabel, JButton, JTextField Layout managers. Lecture 38 GUI Interactivity

Assignment 2.4: Loops

Introduction to GUIs. Principles of Software Construction: Objects, Design, and Concurrency. Jonathan Aldrich and Charlie Garrod Fall 2014

Page 1 of 7. public class EmployeeAryAppletEx extends JApplet

Graphical User Interface (Part-1) Supplementary Material for CPSC 233

Identifiers. Identifiers are the words a programmer uses in a program Some identifiers are already defined. Some are made up by the programmer:

New York University Computer Science Department Courant Institute of Mathematical Sciences

Name: Checked: Learn about listeners, events, and simple animation for interactive graphical user interfaces.

There are several files including the start of a unit test and the method stubs in MindNumber.java. Here is a preview of what you will do:

Frames, GUI and events. Introduction to Swing Structure of Frame based applications Graphical User Interface (GUI) Events and event handling

AP Computer Science Unit 3. Programs

Parts of a Contract. Contract Example. Interface as a Contract. Wednesday, January 30, 13. Postcondition. Preconditions.

CS 170 Java Programming 1. Week 9: Learning about Loops

References. Chapter 5: Enhancing Classes. Enhancing Classes. The null Reference. Java Software Solutions for AP* Computer Science A 2nd Edition

MIT AITI Swing Event Model Lecture 17

Agenda. Container and Component

Class 16: The Swing Event Model

Guessing Game with Objects

Final Project. This assignment demonstrates your understanding of the concepts from the CMIS 141 class.

Due Date: Two Program Demonstrations (Testing and Debugging): End of Lab

CS211 GUI Dynamics. Announcements. Motivation/Overview. Example Revisted

Prototyping a Swing Interface with the Netbeans IDE GUI Editor

CMP 326 Midterm Fall 2015

Starting Out with Java: From Control Structures Through Objects Sixth Edition

Computer Hardware. Java Software Solutions Lewis & Loftus. Key Hardware Components 12/17/2013

Graphical Applications

Graphical User Interface (GUI)

Command-Line Applications. GUI Libraries GUI-related classes are defined primarily in the java.awt and the javax.swing packages.

Quick Start: Permission requests and approvals

CompSci 125 Lecture 17. GUI: Graphics, Check Boxes, Radio Buttons

1. Traffic Control CIT/CSE 230 PROGRAMMING PROJECT 4

CS 209 Section 52 Lab 1-A: Getting Started with NetBeans Instructor: J.G. Neal Objectives: Lab Instructions: Log in Create folder CS209

CSCI 1301: Introduction to Computing and Programming Spring 2018 Project 3: Hangman 2.0 (A Word Guessing Game)

COMP Assignment #10 (Due: Monday, March 11:30pm)

EGR 111 Loops. This lab is an introduction to loops, which allow MATLAB to repeat commands a certain number of times.

6.170 Laboratory in Software Engineering Java Style Guide. Overview. Descriptive names. Consistent indentation and spacing. Page 1 of 5.

AP Computer Science Homework Set 1 Fundamentals

CSC207 Week 4. Larry Zhang

Introduction This assignment will ask that you write a simple graphical user interface (GUI).

Original GUIs. IntroGUI 1

CS 111: Programming Fundamentals II

CE151 ASSIGNMENT

PA101 Learning the Ropes

Swing - JTextField. Adding a text field to the main window (with tooltips and all)

Part III Appendices 165

Unit E Step-by-Step: Programming with Python

Name: Checked: Preparation: Use variables to output a personalized message

Chapter 5: Enhancing Classes

Global Gomoku Lab 4 in D0010E

JAVA Swings Sample Codes CODE NO: EduLanka Sample Java Codes - ONLINE JAVA

Expanded Guidelines on Programming Style and Documentation

CMSC 150 Lab 8, Part II: Little PhotoShop of Horrors, Part Deux 10 Nov 2015

COMP 3400 Programming Project : The Web Spider

EECS2031 Winter Software Tools. Assignment 1 (15%): Shell Programming

CS/IT 114 Introduction to Java, Part 1 FALL 2016 CLASS 3: SEP. 13TH INSTRUCTOR: JIAYIN WANG

CSCI 136 Written Exam #2 Fundamentals of Computer Science II Spring 2012

Calculator Class. /** * Create a new calculator and show it. */ public Calculator() { engine = new CalcEngine(); gui = new UserInterface(engine); }

C++ Style Guide. 1.0 General. 2.0 Visual Layout. 3.0 Indentation and Whitespace

You should see something like this, called the prompt :

Chapter 1. Introduction

CSE 131 Introduction to Computer Science Fall Exam I

Module 5 The Applet Class, Swings. OOC 4 th Sem, B Div Prof. Mouna M. Naravani

Repetition Using the End of File Condition

Assignment 6 YEAH Hours. Ben Barnett and Avery Wang

Course Status Networking GUI Wrap-up. CS Java. Introduction to Java. Andy Mroczkowski

Building a GUI in Java with Swing. CITS1001 extension notes Rachel Cardell-Oliver

Soda Machine Laboratory

RAIK 183H Examination 2 Solution. November 11, 2013

Window Interfaces Using Swing Objects

Assignment 1. Application Development

Transcription:

Critical Thinking Assignment #6: Java Program #6 of 6 (70 Points) Java Interactive GUI Application for Number Guessing with Colored Hints (based on Module 7 material) 1) Develop a Java application that plays a "guess the number" game as described below. a) Your application first gets a random number in the range 1-1000 inclusive (you might want to use Math.random() or the Random class). b) The application then displays the following prompt (probably via a JLabel): I have a number between 1 and 1000. Can you guess my number? Please enter your first guess. Post a textbox for the user to enter a number and post a message telling the user to hit 'Enter' after entering a guess in a textbox (probably using a JTextField). c) Input the user's guess in the code for a previously-registered event-handler method (consider using the event-handling approach discussed in the text, or the actionperformed() method of class based on the ActionListener interface, which will require some additional research outside the text). d) For the first guess, color the entire background red, meaning that they are getting warmer (you might want to use the setbackground() method for a container). If this is the second or later guess, and they are further from the correct number than the last guess, then color the entire background blue. If they get the correct number then color the background some other color than red or blue. e) If the user guessed the number correctly, respond with their number, post a congratulatory message, get a new random number, and display a JButton to start a new game. Otherwise, to help the user close in on the correct number, post a message, with their guessed number, whether they are "TOO HIGH" or "TOO LOW" from the correct number, and whether they are "WARMER" or "COLDER" (this should match the background color). Also report the guess number of the next guess (e.g. "Enter guess number nnn"). You might want to use a concatenated string in JLabel for these incorrect guess messages. f) The process is repeated each game until the user guesses the correct number. Be sure that you erase obsolete status messages. You must run your program for a scenario where the number is not guessed correctly for at least 4 (four) tries (it can be more). A game where you guess the correct number on the fourth try is acceptable. You must show all user inputs and program outputs for this scenario, not just a sample.

Your submitted output must include the appropriate red or blue background after each guess. You must include at least one "warmer" and one "cooler" result. To help you visualize what is required for this program please review the sample output from the last step in these specifications below. (This program was taken from Exercise 11.15 on page 592 of Deitel & Deitel's "Java How to Program (Sixth Edition)" (2005 by Pearson Publishing Co.)) Be sure that you include the course, the program number, your name, and the date in your program header. Include additional comments as necessary and maintain consistent indentation for good programming style as shown in the text. Be sure that you capture all of your output for this program's execution for full credit! 2) You may use any Java Integrated Development Environment (IDE) you choose to develop your source code, compile and link your code, and execute your program (jgrasp is recommended). Or you may use the Windows Command Prompt. 3) You are to submit the following deliverables in a single Microsoft Word file in this order, and clearly labeled. a) A screen snapshot of your Java source code (all file(s) shown separately) displayed in the IDE or Windows editor showing a successful compilation if possible (only the beginning of the source file(s) are necessary). b) A listing of your entire source code file(s). c) A screen snapshot of all of your program's inputs and outputs for a complete number guessing game. Partial screen snapshots from a game will result in lost points. 4) Your instructor may compile and run your program to verify its correctness. 5) You will be evaluated on (in order of importance): a) Following directions and inclusion and packaging of all deliverables in Step #3. b) Correct execution of your program (this includes proper compilation). This also includes getting the correct answers! c) Proper commenting of your Java code and indentation (as specified in the text).

d) Neatness in packaging of your deliverables (to include putting the items in Step #3 in the correct order). 6) Here's an example of what the output from your application might look like: 7) 8)