How to get the value of totalguesses

Assignment Help JAVA Programming
Reference no: EM131578806

I just do not know how to get the value of "totalGuesses" and "bestGame" in the report value. I think there should be a return method but I did not know how to do that.

Please just use those skills that I used in this program, not include "do/while" and "static int" and so on...

*"Best game" means the least times to get the correct answer.
Thx.

import java.util.*;
public class Guess1 {
public static final int MAX = 100;
public static void main(String[] args) {
Scanner console = new Scanner(System.in);
Random r = new Random();
int totalGames = 0;
int numGuesses = 0;
int totalGuesses = 0;
intro();
playGame(r, console, numGuesses, totalGuesses);
next(r, console, totalGames, numGuesses, totalGuesses);
}

public static void intro() {
System.out.println("This program allows you to play a guessing game.");
System.out.println("I will think of a number between 1 and " + MAX);
System.out.println( "and will allow you to guess until");
System.out.println("you get it. For each guess, I will tell you");
System.out.println("whether the right answer is higher or lower");
System.out.println("than your guess.");
}

public static void playGame(Random r, Scanner console, int numGuesses, int totalGuesses) {
System.out.println();
System.out.println("I am thinking of a number between 1 and " + MAX + "...");
int compNum = r.nextInt(MAX) + 1;
System.out.println(compNum);
int userNum = -1;
numGuesses = 0;
while (compNum != userNum) {
numGuesses++;
totalGuesses++;
System.out.print("Your guess? ");
userNum = console.nextInt();
if (compNum > userNum) {
System.out.println("It's higher.");
} else if (compNum < userNum) {
System.out.println("It's lower.");
}
}
if (numGuesses == 1) {
System.out.println("You got it right in 1 guess");
} else {
System.out.println("You got it right in " + numGuesses + " guesses");
}

}

public static void next(Random r, Scanner console, int totalGames, int numGuesses, int totalGuesses) {
System.out.print("Do you want to play again? ");
String answer = console.next();
totalGames = 1;
if (answer.startsWith("y") || answer.startsWith("Y")) {
playGame(r, console, numGuesses, totalGuesses);
next(r, console, totalGames, numGuesses, totalGuesses);
} else if (answer.startsWith("n") || answer.startsWith("N")) {
report(totalGames, totalGuesses);
}
}

public static void report(int totalGames, int totalGuesses) {
System.out.println();
System.out.println();
System.out.println("Overall results: ");
System.out.println(" total games = " + totalGames);
System.out.println(" total guesses = " + totalGuesses);
System.out.println(" guesses/game = ");
System.out.println(" best game = ");
}
}

Reference no: EM131578806

Questions Cloud

Changes in an employee''s values : Changes in an employee's values, interests, and job performance cause
Write a code of a gui : Write a code of a GUI. I choose a Contact list where you havea name, phone number, email and zipcode. The contact should be able to edit, save, delete
Develop a vulnerability assessment plan : For this assignment, you will need to develop a vulnerability assessment plan.
Two advantages and limitations of using historical cost : Explain two advantages and two limitations of using historical cost for the accounting valuation of assets; and the measurement of periodic income.
How to get the value of totalguesses : how to get the value of "totalGuesses" and "bestGame" in the report value. I think there should be a return method but I did not know how to do that.
Information technology professional prepared : 1. Are information technology professional prepared to be change agents? Should they be?
Implement community behavioral change : How can individual, group, and social efforts be combined to implement community behavioral change?
What is the probability that ith item is the first collision : When we hash n items into k locations, what is the probability that all n items hash to different locations?
Write a driver class that uses the computermicrobe class : You must create two Java files. One is called LastNameFirstNameWeek7Prog.java, and the other is called ComputerMicrobe.java.

Reviews

Write a Review

JAVA Programming Questions & Answers

  Recursive factorial program

Write a class Array that encapsulates an array and provides bounds-checked access. Create a recursive factorial program that prompts the user for an integer N and writes out a series of equations representing the calculation of N!.

  Hunt the wumpus game

Reprot on Hunt the Wumpus Game has Source Code listing, screen captures and UML design here and also, may include Javadoc source here.

  Create a gui interface

Create GUI Interface in java programing with these function: Sort by last name and print all employees info, Sort by job title and print all employees info, Sort by weekly salary and print all employees info, search by job title and print that emp..

  Plot pois on a graph

Write a JAVA program that would get the locations of all the POIs from the file and plot them on a map.

  Write a university grading system in java

University grading system maintains number of tables to store, retrieve and manipulate student marks. Write a JAVA program that would simulate a number of cars.

  Wolves and sheep: design a game

This project is designed a game in java. you choose whether you'd like to write a wolf or a sheep agent. Then, you are assigned to either a "sheep" or a "wolf" team.

  Build a graphical user interface for displaying the image

Build a graphical user interface for displaying the image groups (= cluster) in JMJRST. Design and implement using a Swing interface.

  Determine the day of the week for new year''s day

This assignment contains a java project. Project evaluates the day of the week for New Year's Day.

  Write a java windowed application

Write a Java windowed application to do online quiz on general knowledge and the application also displays the quiz result.

  Input pairs of natural numbers

Java program to input pairs of natural numbers.

  Create classes implement java interface

Interface that contains a generic type. Create two classes that implement this interface.

  Java class, array, link list , generic class

These 14 questions covers java class, Array, link list , generic class.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd