服务器之家

服务器之家 > 正文

java实现猜数字小游戏

时间:2021-01-15 13:52     来源/作者:Advancing-Swift

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

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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;
 }
 }
 }
}

另一种生成随机数方法

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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;
 }
 }
 }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:http://www.cnblogs.com/qingyundian/p/7635295.html

标签:

相关文章

热门资讯

2022年最旺的微信头像大全 微信头像2022年最新版图片
2022年最旺的微信头像大全 微信头像2022年最新版图片 2022-01-10
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整
蜘蛛侠3英雄无归3正片免费播放 蜘蛛侠3在线观看免费高清完整 2021-08-24
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
暖暖日本高清免费中文 暖暖在线观看免费完整版韩国
暖暖日本高清免费中文 暖暖在线观看免费完整版韩国 2021-05-08
返回顶部