ユーザーが入力した数値のリストに対して計算を行う方法を知る必要があります。これまでのコードは次のとおりです。続行する方法がわかりません。ユーザーが数値を手動で入力するか、ファイルからアップロードするかを尋ねるコードを作成する必要があります。ユーザーが手動を選択した場合、平均、最小、最大、スタンドを見つける必要があります。開発者 彼らが入力した数字の。どんな助けでもいただければ幸いです
import java.io.*;
public class computation {
//main method starts
public static void main (String[] args) throws Exception {
//create text input reader
InputStreamReader get = new InputStreamReader(System.in);
BufferedReader got = new BufferedReader(get);
//create a text printer
PrintWriter send = new PrintWriter(System.out,true);
//defining a string type variable for user input
String answer1;
//asks the user if they want to input data from keyboard
String question = "Do you want to input data manually? Enter y or n";
send.println(question);
//system reads user input
answer1 = got.readLine();
if (answer1.equals("y")) {
send.println("Enter numbers separated by spaces");
String datacurrent = got.readLine();
} //end of "y" if
if (answer1.equals("n")) {
send.println("Enter the path of your data file");
} //end of "n" if
} //end of main method
} //end of class computation