package Day05; import java.util.Scanner; public class sj01 { public static void main(String[] args) { int a = (int)(Math.random()*100); int count=0; int b; Scanner input= new Scanner(System.in); do{ System.out.println("猜一个数(0-100)"); b=input.nextInt(); if(b>a){ System.out.println("猜大了"); }else if (b<a){ System.out.println("猜小了"); }else { System.out.println("输入不合法"); }count++; }while(b!=a); System.out.println("总共猜了多少次"+count+"次"); } }
zuoye
最新推荐文章于 2024-11-02 15:52:57 发布
本文介绍了一个简单的猜数字游戏程序,使用Java语言编写。程序通过Math.random()生成一个0到100之间的随机数,玩家通过控制台输入猜测的数字,程序会给出提示,帮助玩家逐步接近正确答案,直至猜中为止。文章展示了完整的代码实现。
摘要由CSDN通过智能技术生成