码迷,mamicode.com
首页 > 其他好文 > 详细

Random类

时间:2020-03-19 23:13:36      阅读:125      评论:0      收藏:0      [点我收藏+]

标签:随机   system   static   out   main   rand   print   范围   ring   

 public int nextInt(int n) :返回一个伪随机数,范围在 0 (包括)和 指定值 n (不包括)之间的int 值。

代码:

猜数字

 1 import java.util.Random;
 2 import java.util.Scanner;
 3 
 4 public class RandomPractice {
 5     public static void main(String[] args) {
 6         Scanner scanner = new Scanner(System.in);
 7         Random random = new Random();
 8         int index = random.nextInt(101);
 9         while (true) {
10             System.out.print("请输入0-100的数字:");
11             int n = scanner.nextInt();
12             if (n > index) {
13                 System.out.println("输入的数字过大");
14             } else if (n < index) {
15                 System.out.println("输入的数字过小");
16             } else {
17                 System.out.println("输入正确");
18                 break;
19             }
20         }
21         System.out.println("游戏结束!");
22     }
23 }

 

Random类

标签:随机   system   static   out   main   rand   print   范围   ring   

原文地址:https://www.cnblogs.com/0error0warning/p/12528035.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!