0

我编写了以下代码以满足程序要求,如下所示:

三的平均值 编写一个程序,读取三个整数并显示三个数字的平均值。

输入注意事项:在控制台输入三个整数(非负整数)。

输出说明(提示和标签):程序用这些字符串提示输入三个整数:“输入第一个整​​数。”,“输入第二个整数。”,“输入第三个整数。”。然后程序打印 NUMBER1、NUMBER2 和 NUMBER3 的平均值 = AVG,其中 NUMBER1 是输入的第一个整数值,NUMBER2 和 NUMBER3 是随后的整数,而 AVG 是计算的平均值。

名称规范:您的应用程序类应称为 Average3:

我的源代码:

import java.util.Scanner;
public class Average3 {

    /**
     * @param args
     */
    public static void main(String[] args) {
        int AVG, NUMBER1, NUMBER2, NUMBER3;
        System.out.println("Enter the first integer.");
        Scanner keyboard = new Scanner(System.in);
        NUMBER1 = keyboard.nextInt();
        System.out.println("Enter the second integer.");
        NUMBER2 = keyboard.nextInt();
        System.out.println("Enter the third integer.");
        NUMBER3 = keyboard.nextInt();
        AVG = (NUMBER1 + NUMBER2 + NUMBER3) / 3;
        System.out.println("The average of NUMBER1, NUMBER2, and NUMBER3 = " + AVG);

    }

}

我的程序编译得很好,但我知道我可以使用关联的方法实现和调用一个对象,但我正在努力从哪里开始我从概念上理解方法和对象,但就编写代码而言。有人有什么建议吗?

4

4 回答 4

1

我不知道我是否会为这么简单的任务使用对象。但是,既然你问了,我会解释如果需要对象我会怎么做,

我将创建一个具有 的对象(类)ArrayList<Integer>,这样您就可以计算出不止 3 个数字的平均值。

该对象将有 2 个公共方法。void addNumber(int number)addNumber 将简单地double/int getAverage() 将一个数字添加到 arraylist,而 getAverage 将遍历整个列表,将所有数字相加,然后除以它的大小(不要忘记 -1)

主要是,您创建该类的一个新对象,然后扫描仪的每次扫描,使用 addNumber 方法将输入的数字插入到数组列表中。

我想我会怎么做,因为我被指示使用对象。

祝你好运!

于 2012-07-22T21:57:45.277 回答
1

首先,我将创建一个InputData存储用户输入的类:

class InputData {
    public int number1;
    public int number2;
    public int number3;
}

这本身就是一种有用的通用技术:将多个相关值收集到一个数据结构中。然后,您可以重写您的main方法以使用此类而不是三个单独的int变量,或者您可以更进一步,向InputData该类添加一些行为。要添加的明显第一个行为是计算平均值:

class InputData {
    public int number1;
    public int number2;
    public int number3;

    public int average() {
        return (number1 + number2 + number3) / 3;
    }
}

有了这个,你可以重写你main的如下:

public class Average3 {
    static class InputData {
        public int number1;
        public int number2;
        public int number3;

        public int average() {
            return (number1 + number2 + number3) / 3;
        }
    }

    /**
     * @param args
     */
    public static void main(String[] args) {
        InputData input = new InputData();
        System.out.println("Enter the first integer.");
        Scanner keyboard = new Scanner(System.in);
        input.number1 = keyboard.nextInt();
        System.out.println("Enter the second integer.");
        input.number2 = keyboard.nextInt();
        System.out.println("Enter the third integer.");
        input.number3 = keyboard.nextInt();
        System.out.println("The average of NUMBER1, NUMBER2, and NUMBER3 = "
            + input.average());
    }
}

请注意,我创建了InputData一个静态内部Average3. 它也可以是同一文件中的一个单独的顶级类(只要不是public)或单独文件中的一个类。

对此的改进是在类中使用数组而不是单独的int字段InputData。您的程序可能如下所示:

public class Average3 {
    static class InputData {
        public int[] numbers;

        InputData(int size) {
            numbers = new int[size];
        }

        public int average() {
            int sum = 0;
            for (int number : numbers) {
                sum += number;
            }
            return sum / numbers.length;
        }
    }

    /**
     * @param args
     */
    public static void main(String[] args) {
        String[] prompts = { "first", "second", "third" };
        InputData input = new InputData(3);
        Scanner keyboard = new Scanner(System.in);
        for (int i = 0; i < prompts.length; ++i) {
            System.out.println("Enter the " + prompts[i] + " integer.");
            input.numbers[i] = keyboard.nextInt();
        }
        System.out.println("The average of NUMBER1, NUMBER2, and NUMBER3 = "
            + input.average());
    }
}

在这里,我添加了一个构造函数InputData来初始化数组并给它一个参数来设置数组的大小。

然后,您可以引入其他改进,例如使输入值的数量动态化(使用 anArrayList<Integer>而不是int数组)。但这超出了作业的具体要求。有些人(实际上很多人)倾向于自动进行这种概括。然而,极限编程的倡导者会指出,通常最好保持简单:为今天的需求设计和编码,而不是明天、下周或下个月的需求。

换句话说,你不知道下一个任务会带来什么,所以无论你在当前任务之外进行概括,都可能是浪费工作。

于 2012-07-22T22:33:37.083 回答
0

这是一个关于如何使用非常简单的类制作程序的简短示例。

您可以轻松更改它并询问要计算平均值的数字。

/* using default package */

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

/**
 * The Class Average3.
 */
public class Average3 {

    /** The number list. */
    private List<Integer> numberList;

    /** The sum. */
    private float sum;

    /**
     * Instantiates a new my first class.
     */
    public Average3() {
        this.numberList = new ArrayList<Integer>();
        this.sum = 0;
    }

    /**
     * Adds the integer.
     *
     * @param integer the integer
     */
    public void addInteger(int integer) {
        this.numberList.add(integer);
        this.sum += integer;
    }

    /**
     * Gets the average.
     *
     * @return the average
     */
    public float getAverage() {
        return (this.sum/this.numberList.size());
    }

    /**
     *  Prints the Average.
     */
    public void printAverage() {
        System.out.print("The average of ");
        for(int j = 0; j < this.numberList.size()-1; j++) {
            Integer i = this.numberList.get(j);
            System.out.print(i.toString() + ", ");
        }

        System.out.print("and " + numberList.get(numberList.size()-1));
        System.out.println(" = " + this.getAverage());
    }

    /**
     * The main method.
     *
     * @param args the arguments
     */
    public static void main(String[] args) {
        Average3 myClass = new Average3();

        System.out.println("Enter the first integer.");
        Scanner keyboard = new Scanner(System.in);

        myClass.addInteger(keyboard.nextInt());

        System.out.println("Enter the second integer.");
        myClass.addInteger(keyboard.nextInt());

        System.out.println("Enter the third integer.");
        myClass.addInteger(keyboard.nextInt());

        myClass.printAverage();
    }
}
于 2012-07-22T22:07:03.463 回答
0

作为一个非常基本的示例,在一个 .java 文件中,您可以创建一个“知道如何”获取输入并创建平均值的类,例如:

// takes input and stores in a list which it 
// can do mathematical operations on
class InputMath
{
    // ivar to store input
    private List<int> list;

    // contructor
    public AverageInput() {}

    // gets user input and pushes to `list`
    public void getInput(String question) {}

    // works out the average of `list`
    public int average() {}

    // works out the total of `list`
    public int total() {}

    ...
}

然后你可以使用你想要的类,比如在你的'main'函数中

import InputMath;

class Main
{
    public static void main(String args)
    {
        InputMath im = new InputMath();

        for(int i=0; i<3; i++)
        {
            im.getInput("Enter number " + (i+1));
        }
        System.out.println(im.average());
    }
}

但就像许多评论所暗示的那样,您确实需要通读一些材料/参考/示例并“玩耍”

于 2012-07-22T22:18:33.837 回答