博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
2017.4.14 Java 中nextInt()函数
阅读量:5140 次
发布时间:2019-06-13

本文共 631 字,大约阅读时间需要 2 分钟。

关于nextInt()函数的一点儿说明:如果想得到30到200的(包含30和200)这个跨度的数在java中一般可以有如下方式获得(1)int i = (int)(Math.random()*171) + 30;(2)Random r = new Random () ;     r.nextInt (201) ;     // 这个是0 - 200(3)Random r = new Random () ;     r.nextInt (171) + 30 ; // 这个是30 到 200.//如下为二维数组的一点儿东西public class 数组的使用说明代码 {	 public static void main(String args[]){		 int[] array=creatArray(10); 		    printArray(array); 	 }	 public static int[] creatArray(int length){        //构造含length个元素的数组的方法	      int[] array =new int[length]; 	      Random rad=new Random();                //产生随机数的方法(系统自己的)	      for(int i=0;i

 

转载于:https://www.cnblogs.com/mojiayi/p/6708815.html

你可能感兴趣的文章
javascript 无限分类
查看>>
spring IOC装配Bean(注解方式)
查看>>
[面试算法题]有序列表删除节点-leetcode学习之旅(4)
查看>>
SpringBoot系列五:SpringBoot错误处理(数据验证、处理错误页、全局异常)
查看>>
kubernetes_book
查看>>
OpenFire 的安装和配置
查看>>
ZJOI2018游记Round1
查看>>
侧边栏广告和回到顶部
查看>>
https://blog.csdn.net/u012106306/article/details/80760744
查看>>
ios应用版本号设置规则
查看>>
海上孤独的帆
查看>>
error: more than one device and emulator 问题解决
查看>>
Java基础:容器
查看>>
YUV摘要格式
查看>>
【方法2】删除Map中Value反复的记录,而且仅仅保留Key最小的那条记录
查看>>
C# CheckedListBox控件的使用方法
查看>>
【HDOJ】2007平方和与立方和
查看>>
js中const,var,let区别
查看>>
SharePoint自定义程序页面部署 不用重启IIS
查看>>
2014-11-30-2333-Java-数组
查看>>