为了账号安全,请及时绑定邮箱和手机立即绑定

我在生成随机数那里没有打分号 nums[i]=(int)(Math.random()*100) 结果运行为[0,0,0,0,0,0,0,0]?

我在生成随机数那里没有打分号 nums[i]=(int)(Math.random()*100) 结果运行为[0,0,0,0,0,0,0,0]?

陈波 2015-11-07 12:24:52
public class HelloWorld {    public static void main(String[] args) {                 // 创建对象,对象名为hello    HelloWorld hello = new HelloWorld();                // 调用方法并将返回值保存在变量中 int[] nums = hello.getArray(8);                // 将数组转换为字符串并输出 System.out.println(Arrays.toString(nums));  } /* * 功能:创建指定长度的int型数组,并生成100以内随机数为数组中的每个元素赋值 * 定义一个带参带返回值的方法,通过参数传入数组的长度,返回赋值后的数组 */ public int[] getArray(int length) {        // 定义指定长度的整型数组 int[] nums = new int[length];                // 循环遍历数组赋值 for (int i=0;i<nums.length;i++) {            nums[i]=(int)(Math.random()*100)        // 产生一个100以内的随机数,并赋值给数组的每个成员                             } return nums; // 返回赋值后的数组 }}
查看完整描述

1 回答

已采纳
?
Leiky灬

TA贡献10条经验 获得超0个赞

没错啊,可以的,遍历那里是不是少了个分号

查看完整回答
反对 回复 2015-11-07
  • 1 回答
  • 0 关注
  • 1271 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信