我必须:
- 创建这个java数组;
- 使用 while 循环遍历它;
- 如果总和为 100,则终止程序;
- 并打印我放入数组的总和和数字。
我不知道该怎么做,这是我的代码到目前为止,任何帮助将不胜感激。
public class december2012 {
public static void main(String[] args) {
int sum=0;
Scanner input = new Scanner(System.in);
int i=1;
int [] array = new int[i];
while( i > array.length || sum <= 100) {
System.out.println("Write in the " + i + " number") ;
array[i]=input.nextInt();
sum=+array[i];
System.out.println("sum is " + sum);
}
}
}