Colorado State University Logo | Spring 21: CS 150 - Culture and Coding (AUCC 3B/GT-AH3) Colorado State University Logo | Spring 21: CS 150 - Culture and Coding (AUCC 3B/GT-AH3)
Spring 21: CS 150 - Culture and Coding (AUCC 3B/GT-AH3)
Computer Science

Lab 04 - Magic 8 Ball Lab

Introduction

For this lab, you are going to build a simple magic eight ball, so you no longer have to make any choices. On that note, if you haven’t, you should watch Interstate 60. All joking aside, you will build a 15 sided magic 8 ball, just for simplicity (an actual one has 20 sides for choices).

If you are curious about all the choices, you can read up more on them here.

Also, if you need a refresher on if statements, go here.

Step 1 - Reading the code

This is one of the few labs you will only have to write a single method. While you are free to write more methods (hint: it may be easier with more), you are not required to write more. Before you start, take a moment to read the code provided.

You will notice that the method missing is:

public static String getAnswer(int category, int answer). This is the method you will write. For reference, you method could look like the following, and it would make sense to put in the follow method stub and make sure the program runs.

public static String getAnswer(int category, int answer) {
    // if statements here
    return "Misty";
}

getAnswer() has two ints that are passed in as parameters. They represent a category and an answer.

Category

The first int is between 0 and 99 and it defines your category. The higher the number the better.

You will write three if statements for the categories below:

  • Positive Answers are equal to 74 or above
  • Unsure Answers are 24 to 73
  • Negative answers are less than 24

Once your category is defined, the second int determines the answer that will be returned.

Answer Options

Based on the category, you will have one of five possible answers to be returned as a String. It is important to note, that the answers range from 0-4 (ints only), as such, if you are in the positive category (74 or above) and answer is equal to 0, you will return the String “As I see it, yes.”

Here are the different answer options in order (0-4) for each category:

Positive (>= 74)

  • As I see it, yes.
  • Signs point to yes.
  • Outlook good.
  • Without a doubt.
  • You may rely on it.

Unsure (24-73)

  • Reply hazy, try again.
  • Ask again later.
  • Better not tell you now.
  • Cannot predict now.
  • Concentrate and ask again.

Negative Answers (< 24)

  • Don’t count on it.
  • My reply is no.
  • My sources say no.
  • Outlook not so good.
  • Very doubtful.

Using this knowledge, build your if/else statements (note, you will need to use nested if statements) to return an answer based on the combination.

If you need a refresher about comparision operators used in if statements click here

Testing

This program requires input. So in the Enter program input (optional) box enter the word yes or no. You can enter yes as many times you want the program to run but you need to end your input with no so the program knows to end.

While you can run the program with random to test, you may find this difficult. Looking back at the other programs the past couple weeks, how can you incrementally test to make sure your method is working?

Turning in

As per usual, you will have 5 attempts for graded solutions, so make sure you test it before you submit for grading.

Computer Science Department

279 Computer Science Building
1100 Centre Avenue
Fort Collins, CO 80523
Phone: (970) 491-5792
Fax: (970) 491-2466

Spring 21: CS 150 - Culture and Coding (AUCC 3B/GT-AH3)

Survey of computer science, formal logic, and computational thinking. Explores the historical, gender, and cultural perspectives on the role of technology in society. Includes learning a basic programming language. Students will be expected to write small programs, and construct written arguments on ways in which technology influences our modern culture. Previous computer science experience not necessary.