题目要求:
java自动生成一个0到100之间的数,我们来猜数,电脑会告诉你猜大了还是猜小了,直到猜对为止。
首先我们创建一个随机数。
Random r=new Random(); int x=r.nextInt(100);
我们要猜数,所以我们需要从控制台输入我们猜的数
Scanner sc=new Scanner(System.in); int c=sc.nextInt();
我们通过while循环来不断输入我们猜的数,再通过一些if语句来判断我们是否猜对,并给我们一些范围提示。
完整代码如下:
import java.util.Random; import java.util.Scanner; public class cai_shu { public static void main(String[] args) { Random r=new Random(); int x=r.nextInt(100); int count=0; System.out.println("来猜数吧"); Scanner sc=new Scanner(System.in); while(true) { count++;//加次数 int c=sc.nextInt(); if(c==x) { System.out.println("猜对了"); System.out.println("一共猜了"+count+"次"); }else { if(c通过测试我猜了6次就成功了,程序功能正常。
如果大家感兴趣,请看一下猜数游戏进阶版,下方链接:
Java实现自动猜数(猜数游戏进阶版)_无忧#的博客-CSDN博客
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)