gpt4 book ai didi

java - 整数数组的交替元素之和

转载 作者:太空宇宙 更新时间:2023-11-04 14:15:21 24 4
gpt4 key购买 nike

是的,这个问题看起来很简单。我被要求编写一小段代码(Java)来找出整数数组的替代元素的总和和平均值。起始位置将由用户指定。例如,如果用户输入3作为起始位置,则求和模块将从索引(3-1=2)开始。我的目标不是完成我的作业或其他东西,而是了解为什么我的代码不起作用。那么是否有人可以指出并提出修复建议?代码如下:

import java.util.Scanner;
public class Program {

static int ar[]; static int sum = 0; static double avg = 0.0;
static Scanner sc = new Scanner(System.in);
public Program(int s){
ar = new int[s];
}
void accept(){
for (int i = 0; i<ar.length; i++){
System.out.println("Enter value of ar["+i+"] : ");
ar[i] = sc.nextInt();
}
}
void calc(int pos){
for (int i = (pos-1); i<ar.length; i+=2){
sum = ar[i] + ar[i+1];
}
}
public static void main(String[] args){
boolean run = true;
while (run){
System.out.println("Enter the size of the array: ");
int size = sc.nextInt();
Program a = new Program(size);
a.accept();
System.out.println("Enter starting position: "); int pos = sc.nextInt(); //Accept position
if (pos<0 || pos>ar.length){
System.out.println("ERROR: Restart operations");
run = true;
}
a.calc(pos); //Index = pos - 1;
run = false; avg = sum/ar.length;
System.out.println("The sum of alternate elements is: " + sum + "\n and their average is: " + avg);

}
}
}

最佳答案

在您的 calc 方法中,您的 for 循环定义是正确的(即初始值、条件和增量都是正确的),但在循环内部,sum计算错误。在每次迭代中,您应该将当前元素 - ar[i] - 添加到总 sum 中:

for (int i = (pos-1); i<ar.length; i+=2){
sum = sum + ar[i]; // or sum += ar[i];
}

平均计算也有错误:

avg = sum/ar.length;

只有当所有元素都取平均值时,这才是正确的。由于平均值是一半元素的平均值,因此您不应除以 ar.length

关于java - 整数数组的交替元素之和,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27820582/

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