使用java怎么编写一个猜数字游戏?很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。
成都创新互联公司专注于企业成都营销网站建设、网站重做改版、康马网站定制设计、自适应品牌网站建设、成都h5网站建设、商城网站定制开发、集团公司官网建设、成都外贸网站建设公司、高端网站制作、响应式网页设计等建站业务,价格优惠性价比高,为康马等各大城市提供网站开发制作服务。代码如下:
public static void main(String[] args) { Random rand = new Random(); Scanner sc = new Scanner(System.in); System.out.println("----------猜数游戏----------"); System.out.println(" 1.开始游戏\n 2.游戏设置\n 3.退出游戏"); System.out.println("请输入:"); int[] arr = new int[3]; for (int i = 1; i < arr.length; i++) { if (i < 4) { arr[i] = sc.nextInt(); } break; } int a = 0; //开始界面 for (int i = 1; i < arr.length; i++) { if (arr[i] == 1) { System.out.println("开始游戏"); a = 1; break; } else if (arr[i] == 2) { System.out.println("游戏设置"); a = 2; break; } else if (arr[i] == 3) { System.out.println("退出游戏"); a = 3; break; } else System.out.println("错误输入"); } //设置界面 int max = 100; int min = 0; int cishu = 5; if (a == 2) { System.out.println("设置范围"); System.out.println("最小值"); min = sc.nextInt(); System.out.println("较大值"); max = sc.nextInt(); System.out.println("设置猜的次数"); cishu = sc.nextInt(); //int randNum = rand.nextInt(max - min + 1) + min; System.out.println("设置范围\n最小值为:" + min + "\n较大值为:" + max + "\n猜的次数为:" + cishu); a = 6; } //设置后回到开始界面 if (a==6){ System.out.println("----------猜数游戏----------"); System.out.println(" 1.开始游戏\n 2.游戏设置\n 3.退出游戏"); System.out.println("请输入:"); for (int i = 1; i < arr.length; i++) { if (i < 4) { arr[i] = sc.nextInt(); } break; } //开始界面 for (int i = 1; i < arr.length; i++) { if (arr[i] == 1) { System.out.println("开始游戏"); a = 1; break; } else if (arr[i] == 2) { System.out.println("游戏设置"); a = 2; break; } else if (arr[i] == 3) { System.out.println("退出游戏"); a = 3; break; } else System.out.println("错误输入"); } } //游戏界面 if (a == 1) { int randNum = rand.nextInt(max - min + 1) + min; System.out.println("我想了一个" + min + "到" + max + "的数,请你来猜:\n你有" + cishu + "次机会"); int i = 1; for (; i <= cishu; ++i) { System.out.println("第" + i + "次:"); int guess = sc.nextInt(); if (i < cishu) { if (randNum >= guess) { if (randNum <= guess) { System.out.println("恭喜你猜对了!\n" + "该值是:" + randNum); break; } else System.out.println("你猜小了!"); } else System.out.println("你猜大了!"); } else System.out.println("你猜错了!\n该值是:" + randNum); } } }
运行结果:
看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注创新互联行业资讯频道,感谢您对创新互联网站建设公司,的支持。