码迷,mamicode.com
首页 > 其他好文 > 详细

面向对象

时间:2017-05-17 22:12:52      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:math   system.in   print   input   out   logs   code   oid   bsp   

老王和隔壁的美女猜数字,一共有四次机会,猜到了就有特殊奖励

public class test {
    public static void main(String[] args) {
         int i=(int) (Math.random()*10);
         Scanner input=new Scanner(System.in);
         for(int j=0;j<4;j++){
             System.out.println("老王第"+(j+1)+"次猜谜");
             int l=input.nextInt();
             if(l==i){
                 System.out.println("恭喜你猜对了");
                 break;
             }else{
                 continue;
             }
             
         }
        
    }
}

 

面向对象

标签:math   system.in   print   input   out   logs   code   oid   bsp   

原文地址:http://www.cnblogs.com/fenghaichen/p/6869617.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!