服务器之家

服务器之家 > 正文

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

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享
歪歪漫画vip账号共享2020_yy漫画免费账号密码共享 2020-04-07
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
返回顶部