在此问题集中,您必须要求用户输入10个值,然后将输入数组中的元素立方体化,最后打印出原始和最终数组
这个问题不是关于打印数组,我关心的是如何将数组中的所有元素立方体化。 我尝试这样做,如下所示,但我继续在输出中获取随机的东西?
public class arraysprob4 {
//raahul marreddy
// have user enter 10 numbers
// find and print the cube's
static Scanner console = new Scanner(System.in);
public static void main(String[]args) {
int newcube[] = new int[10];
int cube[] = new int[newcube.length];
System.out.println("Enter 10 numbers:");
for(int i = 0; i < cube.length; i++) {
cube[i] = console.nextInt();
newcube[i] = cube[i] * cube[i] * cube[i];
}
System.out.println("New Array is:" + newcube);
System.out.println("Old Array is :" + cube);
}
}