java实现猜数字小游戏

java实现猜数字游戏 随机给定一个数字,猜大小直到正确

package com.swift;

import java.util.Random;
import java.util.Scanner;

public class GuessBigSmall {

 public static void main(String[] args) {
 Scanner scan=new Scanner(System.in);
 Random random = new Random();
 int number = random.nextInt(1000) + 1;
 for (;;) {
 System.out.println("请输入猜的——正整数——数字:");
 int guessNumber=scan.nextInt();
 if (guessNumber>number) {
 System.out.println("猜大了。");
 continue;
 } else if (guessNumber<number) {
 System.out.println("猜小了。");
 continue;
 } else {
 System.out.println("恭喜,猜对了。");
 break;
 } 
 }
 }
}

另一种生成随机数方法

package com.swift;

import java.util.Scanner;

public class GuessBigSmall2 {

 public static void main(String[] args) {
 Scanner scan = new Scanner(System.in);
 int number = (int) (Math.random() * 1000 + 1);
 for (;;) {
 System.out.println("请输入猜的——正整数——数字:");
 int guessNumber = scan.nextInt();
 if (guessNumber > number) {
 System.out.println("猜大了。");
 continue;
 } else if (guessNumber < number) {
 System.out.println("猜小了。");
 continue;
 } else {
 System.out.println("恭喜,猜对了。");
 break;
 }
 }
 }
}

更多有趣的经典小游戏实现专题,分享给大家:

C++经典小游戏汇总

python经典小游戏汇总

python俄罗斯方块游戏集合

JavaScript经典游戏 玩不停

java经典小游戏汇总

javascript经典小游戏汇总

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持呐喊教程。

声明:本文内容来源于网络,版权归原作者所有,内容由互联网用户自发贡献自行上传,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任。如果您发现有涉嫌版权的内容,欢迎发送邮件至:notice#nhooo.com(发邮件时,请将#更换为@)进行举报,并提供相关证据,一经查实,本站将立刻删除涉嫌侵权内容。