這是我運行StatsDemo時得到的錯誤。該程序不應該輸出到控制檯,但運行該程序將會在輸出中創建一個名爲Results.txt的文件。你應該得到的結果是:你應該得到77.444的平均值和10.021的標準偏差。即使我沒有編譯錯誤,我爲什麼在運行程序時遇到此錯誤?
運行StatsDemo。
這個程序計算含有一系列數字
的文件統計輸入文件名:[DrJava輸入框]
java.util.NoSuchElementException:沒有找到行
在java中。 util.Scanner.nextLine(Scanner.java:1540)
在StatsDemo.main(StatsDemo.java:34) 在sun.reflect.NativeMethodAccessorImpl.invoke0(本機方法)
在sun.reflect.NativeMethodAccessorImpl.invok E(NativeMethodAccessorImpl.java:62)
在sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
在java.lang.reflect.Method.invoke(Method.java:498)
在edu.rice .cs.drjava.model.compiler.JavacCompiler.runCommand(JavacCompiler.java:272)
下面是代碼:
import java.text.DecimalFormat; //for number formatting
import java.util.Scanner; //for keyboard input
import java.io.*; //for using files
public class StatsDemo
{
public static void main(String [] args)throws IOException {
double sum = 0; //the sum of the numbers
int count = 0; //the number of numbers added
double mean = 0; //the average of the numbers
double stdDev = 0; //the standard deviation of the numbers
String line; //a line from the file
double difference; //difference between the value and the mean
//create an object of type Decimal Format
DecimalFormat threeDecimals = new DecimalFormat("0.000");
//create an object of type Scanner
Scanner keyboard = new Scanner (System.in);
String filename; // the user input file name
//Prompt the user and read in the file name
System.out.println("This program calculates statistics"
+ " on a file containing a series of numbers");
System.out.print("Enter the file name: ");
filename = keyboard.nextLine();
//ADD LINES FOR TASK #4 HERE
File rf = new File("Numbers.txt");
Scanner inputFile = new Scanner(rf);
while (inputFile.hasNextDouble())
{
sum += inputFile.nextDouble();
count ++;
inputFile.nextLine();
}
inputFile.close();
mean = sum/count;
//ADD LINES FOR TASK #5 HERE
File rf2 = new File("Numbers.txt");
Scanner inputFile2 = new Scanner(rf2);
sum = 0;
count = 0;
//priming read to read the first line of the file
while (inputFile.hasNext())
{
difference = inputFile.nextDouble() - mean;
sum += Math.pow(difference,2);
count++;
if (inputFile.hasNextDouble())
inputFile.nextLine();
}
inputFile.close();
stdDev = Math.sqrt(sum/count);
//ADD LINES FOR TASK #3 HERE
FileWriter fwriter = new FileWriter("Numbers.txt", true);
PrintWriter outputFile = new PrintWriter(fwriter);
outputFile.print("mean = " + mean);
outputFile.print("deviation = " + stdDev);
outputFile.close();
System.out.println("Data written to file");
}
}
缺少編譯器錯誤並不意味着程序沒有bug,實際上你的程序不能處理你給它的輸入。雖然我們無法幫助你,但沒有代碼。 –
因爲你做錯了什麼。 –
因爲這是運行時錯誤。你關了掃描儀,也許?沒有線路被發現...很難說沒有你的代碼 –