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

输出1~6的随机数 if的作用域问题

时间:2018-02-05 23:18:42      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:big   main   div   bubuko   print   技术分享   image   分享图片   double   

 1 //测试if语句
 2 public class TestIf {
 3     public static void main(String[] args){
 4         double d = Math.random();//0~1之间的小数
 5         int e = (int)(d*5);   //[0,4]
 6         //int f = 1+(int)(d*6);  //[1,6] 掷色子
 7         System.out.println(e);
 8         /*if (e>3) {System.out.println("Big Data");
 9             
10         }*/
11         if(e<3)//不加花括号 则if的作用域只限于第一句
12             System.out.println("small");
13         System.out.println("big data");
14             
15         
16     }
17 
18 }

技术分享图片

输出1~6的随机数 if的作用域问题

标签:big   main   div   bubuko   print   技术分享   image   分享图片   double   

原文地址:https://www.cnblogs.com/zbgghost/p/8419598.html

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