Java怎么根据第一个数字n,然后决定读取以下n行数据?

2025-01-19 11:04:07
推荐回答(1个)
回答1:

import java.util.*;
import java.io.*;
public class Yugi{
    public static void main(String[] args) throws Exception{
        Scanner scan = new Scanner(System.in);
        System.out.println("决定读取以下n行数据?");
        int n = scan.nextInt();
        scan  = new Scanner(new File("data.txt"));
        int i = 1;
        while(i <= n && scan.hasNextLine()){
            System.out.println(scan.nextLine());
            i++;
        }
        scan.close();
    }
}