猜数字游戏

import java.util.*;
public class GuessNumber{
 public static void main(String[] args){
  
  Scanner sc=new Scanner(System.in);
  
  for(;;){
   System.out.println("如果您想要开始游戏,请输入:1;如果您想退出游戏,请输入:0");
   Random r=new Random();
   int answer=r.nextInt(101);
   int m=sc.nextInt();
   int i,n=0;
   if(m==1){
    for( i=0;i<10;i++){
     System.out.println("我猜:");
     int num=sc.nextInt();
     n++;  
     if(num<answer){System.out.println("您猜的数太小了!");}
   
     else if(num>answer){System.out.println("您猜的数太大了!");}
     else{
      if(n==1){System.out.println("您太牛了,一次就ok,佩服!");}
      else {System.out.println("恭喜你,猜对了!您一共猜了"+n+"次");}
      break;
     }
    }
    if(i>=10){
    System.out.println("对不起,您只有十次机会哦!");
    System.out.println("正确结果是:"+answer);}
   }
   else if(m==0){break;}
  }
 }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值