package com.shuju.base;
import java.util.Scanner;
/*
* java中有三种循环(while,do...while,for)
*
* */
public class Demo02_XunHuan {
// public void fin(){
// int i=0;
// while (i<10) {
//
// System.out.println("我爱热巴");
// i++;
//
//
// }}
public void fu(){
int i = 0;
int a=(int)(Math.random()*10);
while(i<4){
System.out.println("请输入数字");
Scanner sc=new Scanner(System.in);
int c=sc.nextInt();
if(c>a){
System.out.println("猜大了");
}else if(c<a)
{
System.out.println("猜小了");
}else if(a==c){
System.out.println("猜测成功");
System.out.println(a);
break;
}else
{
System.out.println("退出");
}
}
System.out.println("次数已经用完了");
//请输入数字
//产生随机数
}
//猜数字游戏,电脑产生随机数,玩家输入数字,电脑进行比较,如果输入的数字更大
猜数字游戏
最新推荐文章于 2024-11-01 14:48:20 发布