在一个Java文件中运行另一个程序

时间:2014-10-02 03:06:13

标签: java

我制作的程序中第一个程序是最大用户输入的查找程序;第二个乘以用户输入。我想将这些程序合并为一个,以便在第一个程序完成运行后,第二个程序开始。但是,由于我不熟悉编程,所以我不知道如何做到这一点。

第一个代码

import java.util.Scanner; 班级军队{

private static Scanner in;

public static void main(String[] args){
    // declares an array of doubles
    double[] inputArray = new double[10];
    // allocates memory for 10 doubles
    System.out.println("Please enter ten numbers.");
    try {
        in = new Scanner(System.in);
        for (int j = 0; j < inputArray.length ; j++) {
            inputArray[(int) j] = in.nextDouble();
            }
        }
        catch (Exception e) {
            e.printStackTrace();
        }

    double maxValue = inputArray[0];
    for (int i = 0; i < inputArray.length; i++) {
       if (inputArray[i] > maxValue) {
            maxValue = inputArray[i];
             // removed print from here
            } else {
             // removed print from here too
            }
      }
    System.out.println("The largest number is "+maxValue+"."); //print max from outside the loop;
            // optional: display only one answer.
}

}

第二个代码

import java.util.Scanner; 类战#{/ p>

private static Scanner in;

public static void main(String[] args){
    double[] inputArray = new double[10];
    System.out.println("Please enter ten numbers.");
    in = new Scanner(System.in);
    for (int j = 0; j < inputArray.length ; j++) {
        inputArray[(int) j] = in.nextDouble();
        }
    double product = inputArray[0];
    for (int i = 0; i < inputArray.length; i++) {
        product*=inputArray[i];
        }
    System.out.println("The product of these numbers is "+product+".");
}

}

1 个答案:

答案 0 :(得分:3)

利用方法,创建两种不同的方法。将当前的两个主要方法代码移动到这两个新方法中。从大家那里,一个接一个地调用新方法。

public static void main() {
  findLargest();
  multiplyInputs();
}