欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

菜鸟写代码--猜数字小游戏--05

程序员文章站 2022-05-18 10:03:32
...
import java.util.Scanner;
public class Test {
	public static void main(String[] args) {	
	//程序产生一个随机数
		int number=(int)(Math.random()*100+1);
		while(true) {
			Scanner sc=new Scanner(System.in);
			System.out.println("请输入你猜的数据1-100");
			int a=sc.nextInt();
			if(a<number) {
				System.out.println("你猜的小了");
			}else if(a>number) {
				System.out.println("你猜的大了");
			}else {
				System.out.println("恭喜你猜对了");		
				break;
			}				
		}		
	}
}

菜鸟写代码--猜数字小游戏--05

相关标签: 代码 java