A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 仙儿哥 中级黑马   /  2016-1-10 21:47  /  589 人查看  /  4 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文


  public class FingerGame {
  private String[] op = new String[] { "布", "剪刀", "石头" };
  Random r = new Random();
  private int wj = 0;
  private int dn = 0;
  private int count = 0;
  private int go() {
  int k = r.nextInt(3);
  System.out.println("电脑:" + op[k]);
  return k;
  }
  private void compare(int i) {
  count++;
  System.out.println("玩家:" + op[i - 1]);
  int k = go();
  if ( i - 1 == k) {
  System.out.println("打平");
  } else if ( i - 1 - k == 1 || i-1-k == -2) {
  System.out.println("玩家获胜");
  wj++;
  } else {
  System.out.println("电脑获胜");
  dn++;
  }
  }
  private void info() {
  System.out.println("共" + count + "盘");
  System.out.println("玩家获胜" + wj + "盘");
  System.out.println("电脑获胜" + dn + "盘");
  System.out.println("平局" + (count-wj-dn) + "盘");
  }

4 个回复

倒序浏览
仙儿哥 来自手机 中级黑马 2016-1-10 21:48:49
沙发
继续未完成的代码public void start() {
  String xz = "";
  BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
  do {
  System.out.println("\n请选择:\n1.布\n2.剪刀\n3.石头\n结束请输入exit");
  try {
  xz = br.readLine();
  if (xz.equalsIgnoreCase("exit")) {
  info();
  continue;
回复 使用道具 举报
仙儿哥 来自手机 中级黑马 2016-1-10 21:49:52
藤椅
continue;
  }
  compare(Integer.parseInt(xz));
  } catch (IOException e) {
  // TODO Auto-generated catch block
  e.printStackTrace();
  }
 } while (!xz.equals("exit"));
  }
  /**
  * @param args
  */
  public static void main(String[] args) {
  // TODO Auto-generated method stub
回复 使用道具 举报
仙儿哥 来自手机 中级黑马 2016-1-10 21:52:27
板凳
public static void main(String[] args) {
  // TODO Auto-generated method stub
  new FingerGuessing()。start();
  }
  }
回复 使用道具 举报
写的太好了,如果有GUI就好了
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马