gpt4 book ai didi

java - 从 Java 中的方法打印数组

转载 作者:行者123 更新时间:2023-12-01 23:25:25 24 4
gpt4 key购买 nike

我不确定从方法调用时如何打印数组的值,我必须解决这些问题:

1- 创建一个由 100 个 100 到 500 范围内的随机整数组成的数组,包括端点。 (这部分我还好,接下来的两点我很怀疑如何解决)

2- 创建一个打印数组的方法,每行 5 个数字,每个数字之间有一个空格。 (我几乎一切都正确,除了我不知道如何返回值,我尝试了 return System.outprint..... 但无论如何都没有工作,该方法有一个 void ,有些成功了更糟)

3-创建一个方法来打印数组中的最小数字。 (我不知道该怎么做!)

  1. 创建一个方法来打印数组中所有数字的总和。 (我不太明白为什么“返回广告;”不起作用,因为大多数代码至少对我来说似乎是正确的呵呵)

这是我到目前为止的代码:

package randomhundred;

import java.util.Arrays;

public class RandomHundred {
private static int[] rand;

public static void main(String[] args) {
// TODO code application logic here

//setting the 100 array

/* PART I*/

int rand [] = new int [100];
int numb;
for(int i=0; i<rand.length; i++){
numb = (int) (100 + (Math.random() * ( (500 - 100) + 1)));
numb = rand[i];
}

}

/* PART II */
public static void arai (){
for (int i=0; i<100; i++){
System.out.print(rand[i] + " ");

if( i%5 == 0){
System.out.println();
}
else{
System.out.print(rand[i] + " ");
}
}


/**
PART IV
*/
public static int suma(){
int ad;
for(int i=0; i<100; i++){
ad =+rand[i];
}
return ad;
}

}
}

最佳答案

更改:

ad =+rand[i];

ad += rand[i];

让第四部分发挥作用。

关于java - 从 Java 中的方法打印数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20083908/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com