我必须创建一个程序,向用户询问一系列数字,并将输入保存在一个数组中。然后稍后允许用户在数组中搜索一个数字并打印该数组。我被卡住了,因为它不允许我将输入存储在数组中。我还需要帮助打印数组。
我正在上 Java 课,我们使用的教科书根本没有帮助,有没有人推荐一本好的 Java 教科书?
到目前为止,这是我的代码:
import java.util.Scanner;
public class MyContainer {
private int [] values;
private int size;
public MyContainer() {
values = new int[50];
size=0;
}
public static void main(String [] args)
{
//load()
Scanner input = new Scanner(System.in);
double sum = 0;
System.out.print("Enter a positive number, negative number will end entry.");
double number = input.nextDouble();
int count = 0;
double average = 0;
int numofinput = 0;
while (number >= 0)
{
count++;
numofinput ++;
sum += number;
System.out.print("Enter a positive number, negative number will end entry.");
number = input.nextDouble();
}
sum = sum + number;
average = sum/numofinput;
System.out.print("The average of the numbers as of right now is "
+ average);
}
//search()