[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/biblelamp/JavaExercises/master/Head%20First%20Java/DotCom.java [Back]  [Original]

import java.util.*;

public class DotCom {
    private ArrayList locationCells;
    private String name;

    public void setLocationCells(ArrayList loc) {
        locationCells = loc;
    }

    public void setName(String n) {
        name = n;
    }

    public String checkYourself(String userInput) {
        String result = "miss";
        int index = locationCells.indexOf(userInput);
        if (index >= 0) {
            locationCells.remove(index);
            if (locationCells.isEmpty()) {
                result = "kill";
                System.out.println("Ouch! You sunk " + name + " :( ");
            } else {
                result = "hit";
            }
        }
        return result;
    }
}

Web Proxy Viewer  |  New URL  |  Original Page