博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
简单的猜数字(JAVA版)
阅读量:4876 次
发布时间:2019-06-11

本文共 2516 字,大约阅读时间需要 8 分钟。

按书上的样例来操作的。

不过,书上提到的BUG,我没有在看下一章时就解决了哈。。

从网上查找的删除数组元素的方法。

其实,将数据结构更改为ARRAYLIST,可能更简单。:)

GameHelper.java

import java.io.*;public class GameHelper {    public String GetUserInput(String prompt) {        String inputLine = null;        System.out.println(prompt + " ");        try {            BufferedReader is = new BufferedReader(new InputStreamReader(System.in));            inputLine = is.readLine();            if (inputLine.length() == 0 )                return null;        } catch (IOException e) {            System.out.println("IOException: " + e);        }        return inputLine;    }}

SimpleDotCom.java

public class SimpleDotCom {    int[] locationCells;    int numOfHits = 0;        public void setLocationCells(int[] locs) {        locationCells = locs;    }        public int[] delLocationCells(int eleInt) {        for(int i = 0; i < locationCells.length; i++) {            if (eleInt == locationCells[i]) {                for(int j = i + 1; j < locationCells.length; j ++) {                    locationCells[i] = locationCells[j];                }            }        }        return locationCells;    }        public String checkYourself(String stringGuess) {        int guess = Integer.parseInt(stringGuess);        String result  = "miss";        for (int cell : locationCells) {            if (guess == cell) {                result = "hit";                numOfHits++;                delLocationCells(guess);                break;            }        }                if (numOfHits == locationCells.length) {            result = "kill";        }        System.out.println(result);        return result;    }}

SimpleDotComTestDrive.java

 

public class SimpleDotComTestDrive {    public static void main(String[] args) {        int numOfGuesses = 0;        GameHelper helper = new GameHelper();                SimpleDotCom theDotCom = new SimpleDotCom();        int randomNum = (int) (Math.random() * 5);                int[] locations = {randomNum, randomNum + 1, randomNum + 2};        theDotCom.setLocationCells(locations);        boolean isAlive = true;                while(isAlive == true) {            String guess = helper.GetUserInput("Enter a number");            String result = theDotCom.checkYourself(guess);            numOfGuesses++;            if(result.equals("kill")) {                isAlive = false;                System.out.println("You took " + numOfGuesses + " guesses.");            }                    }            }}

输出:

转载于:https://www.cnblogs.com/aguncn/p/4472622.html

你可能感兴趣的文章
AngularJS入门
查看>>
(X)HTML Strict 下的嵌套规则
查看>>
UVA 11044
查看>>
sql 知识点
查看>>
miniprogrampatch 提供 watch 和 computed 特性
查看>>
ASP .Net Core系统部署到 CentOS7 64 具体方案
查看>>
ssl证书 pem der cer crt key pfx 概念 沃通证书组合转换及haproxy配置证书
查看>>
NEU 1683: H-Index
查看>>
声明,本博客文章均为转载,只为学习,不为其他用途。感谢技术大牛的技术分享,让我少走弯路。...
查看>>
Java中构造方法被别封装后的调用
查看>>
vs2010启动越来越慢解决方法
查看>>
购物车
查看>>
关于特效表现与资源优化
查看>>
JAVA String.format 方法使用介绍
查看>>
接口测试案例设计
查看>>
模块和包
查看>>
GC.Collect
查看>>
Linux sz rz
查看>>
centos7.1下 Docker环境搭建
查看>>
c# 导出Excel
查看>>