简体   繁体   English

从文本文件读取和打印

[英]Read and print from a text file

Ok so I'm supposed to be reading and printing from a text file with the code yet every time I run I get a "java.utilNoSuchElementException" on line 31 "grade = in.nextInt();". 好的,所以我应该使用代码从文本文件读取和打印,但是每次运行时,在第31行“ grade = in.nextInt();”中都会收到“ java.utilNoSuchElementException”。 The current text file is 2 80 97 5 69 79 89 99 58 7 60 70 80 90 100 0 59 当前文本文件是2 80 97 5 69 79 89 99 58 7 60 70 80 90 100 0 59

where the first number is the number of scores in each section, each section is supposed to be counted (ie. 1, 2, 3) Anyways one problem at a time. 如果第一个数字是每个部分的分数数量,则应该计算每个部分的分数(即1、2、3)。 here's the current code. 这是当前代码。

import java.util.Scanner; 导入java.util.Scanner; import java.io.*; 导入java.io. *;

public class Prog2 { 公共课程Prog2 {

public static void main (String args []) throws IOException
{
    Scanner in = new Scanner (new File ("test1.txt"));

    int Lowest, Highest, grade = 0;
    float section_average, class_average;
    int count = 0, A = 0, B = 0, C = 0, D = 0, F = 0, total_number_of_sections = 0, total_number_of_scores = 0, number = 0;
    while (in.hasNextInt())
    {
        number = in.nextInt();
        System.out.println (in.nextInt());
        number ++;

        while (count < number)
        {
            grade = in.nextInt();
            total_number_of_sections += number;
            total_number_of_scores += grade;
            total_number_of_scores ++;

            count++;


        }

    }
    if (number > 0)
    {
        System.out.println ("Scores for section "+count);
    }
    else
    {
        System.out.println ("Scores for section 0");
    }
    if (grade >= 90)
    {
        A ++;

    }
    if (grade >= 80 && grade < 90)
    {
        B ++;

    }
    if (grade >= 70 && grade < 80)
    {
        C ++;

    }
    if (grade >= 60 && grade < 70)
    {
        D ++;

    }
    if (grade < 60)
    {
        F ++;

    }
    System.out.println (" ");
    System.out.println ("Scores for section "+count);
    System.out.println ("A's" + A);
    System.out.println ("B's" + B);
    System.out.println ("C's" + C);
    System.out.println ("D's" + D);
    System.out.println ("F's" + F);
    System.out.println ("Lowest Score: ");
    System.out.println ("Highest Score: ");
    System.out.println (" ");
    System.out.println (" ");
    System.out.println ("Total number of sections: " + total_number_of_sections);
    System.out.println ("Total number of scores: " + total_number_of_scores);
    System.out.println ("Class Average: ");



}

} }

try this 尝试这个

while (in.hasNextInt())
{
    count = 0;
    number = in.nextInt();
    System.out.println (in.nextInt());


    while (in.hasNextInt())
    {
        grade = in.nextInt();
        total_number_of_sections += number;
        total_number_of_scores += grade;
        total_number_of_scores ++;

        if(++count == number ){ break;}


    }

}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM