入力ファイルから整数のセットを読み込むプログラムを取得する方法。目標は配列に格納して、入力より大きな値を表示することです。また、整数配列と整数nを受け入れる、greater_than_n()というメソッドを作成します。この方法の目的はnよりも数字を表示することでより大きな配列とメソッドの問題
import java.util.Scanner;
import java.io.*;
public class Lab5 // File Name{
public static void main(String[] args) throws IOException
{
Scanner userInput = new Scanner(System.in);
File Integers = new File("Integers.txt");
Scanner inputReader = new Scanner(Integers);
String line = inputReader.nextLine();
System.out.print(line);
inputReader.close();
System.out.print("Enter an Integer: ");
int userAction = userInput.nextInt();
System.out.println("The numbers in the input file that are greater than " + userAction + " are: ");
for (int index = 0; index < Integers.length; index++)
{
if(Integers[index] > userAction)
{
System.out.print(Integers + " ");
}
}
}
}
:それを修正するには、このスニペットを使用することができます。 'System.out.print(numbers);'は 'System.out.print(numbers [index]);'でなければなりません。 –