首页 > 代码库 > 简简版攻击网站游戏的设计
简简版攻击网站游戏的设计
游戏介绍,我们把网站命名为DotCom,将它放在一个横列中的3个格子里,玩家输入位置来猜测网站被存放的位置,猜中为hit,如果三个格子都猜中为kill,没有猜中为miss。
在简简版中我们把这些都固定。
1 public class SimpleDotCom { 2 int[] locationCells; 3 int numOfHits = 0; 4 5 public void setLocationCells(int[] locs){ 6 int guess = Integer.parseInt(StringGuess); 7 String result = "miss"; 8 for (int cell : locationCells) { 9 if (guess == cell) {10 result = "hit";11 numOfHits++;12 break;13 }14 }15 if(numOfHits ==locationCells.length){16 result = "kill"; 17 } 18 System.out.println(result);19 return result;20 } 21 }
public class SimpleDotComTestDrive{ public static void main (String [] args){ SimpleDocCom dot = new SimpleDotCom(); int[] locations = {2,3,4}; dot.setLocationCells(locations); String uerGuess = "2"; String result = dot.checkYourself(userGuess); }}
简简版攻击网站游戏的设计
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。