Question

In: Computer Science

Complete the program to read in values from a text file. The values will be the...

Complete the program to read in values from a text file. The values will be the scores on several assignments by the students in a class. Each row of values represents a specific student's scores. Each column represents the scores of all students on a specific assignment. So a specific value is a specific student's score on a specific assignment. The first two values in the text file will give the number of students (number of rows) and the number of assignments (number of columns), respectively. You may assume that all values in the file will be integers.

For example, if the file contains:

3
4
9 6 10 5
2 2 0 0
10 10 9 10

then it represents the scores for 3 students on 4 assignments as follows:

Assignment 1 Assignment 2 Assignment 3 Assignment 4
Student 1 9 6 10 5
Student 2 2 2 0 0
Student 3 10 10 9 10

The program should:

1) Read in the first two values, two integers, to get the number of students and number of assignments. Create a two-dimensional array of integers to store all the scores using these dimensions.

2) Read in all the scores into the 2-D array.

3) Print the whole array, row by row on separate lines, using Arrays.toString() on each row of the array

3) Print the average of the scores on each assignment, rounded to 1 decimal place. For example, if the data is given in the above example, the output would be:

Array of scores:
[9, 6, 10, 5]
[2, 2, 0, 0]
[10, 10, 9, 10]
Average score of each assignment:
Assignment #1 Average = 7.0
Assignment #2 Average = 6.0
Assignment #3 Average = 6.3
Assignment #4 Average = 5.0

This is what I have so far:

import java.util.*;
import java.io.File;
import java.io.*;

public class Scores {
public static void main(String[] args) throws FileNotFoundException {
Scanner scnr = new Scanner(System.in);
System.out.println("What is the name of the file containing the scores?");
String file = scnr.nextLine();
Scanner fileScan = new Scanner(new File(file));
int rows = Integer.parseInt(fileScan.nextLine());
int col = Integer.parseInt(fileScan.nextLine());
int[][] scores = new int[rows][col];
int i = 0;
while (fileScan.hasNext()) {
String line = fileScan.nextLine();
String[] strArray = line.split(" ");
for (int c = 0; c < strArray.length; c++) {
scores[i][c] = Integer.parseInt(strArray[c]);
}
i++;
}
System.out.println("Array of scores:");
for (int c = 0; c < rows; c++) {
for (int j = 0; j < col; j++) {
System.out.print(scores[c][j] + " ");
}
System.out.println();
}
System.out.println("Average score of each assignment:");

for (int c = 0; c < col; c++) {
int sum = 0;
for (int j = 0; j < rows; j++) {
sum = sum + scores[j][c];
}
System.out.println("Assignment #" + (c + 1) + " Average = " + (sum / 3));
}

}
}

But I keep getting errors similar to this:

What is the name of the file containing the scores?
Exception in thread "main" java.lang.NumberFormatException: For input string: ""
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:65)
at java.lang.Integer.parseInt(Integer.java:592)
at java.lang.Integer.parseInt(Integer.java:615)
at Scores.main(Scores.java:12)

Solutions

Expert Solution

PROGRAM CODE

import java.text.DecimalFormat;
import java.util.*;
import java.io.File;
import java.io.*;

public class Scores {

public static void main(String[] args) throws FileNotFoundException {

Scanner scnr = new Scanner(System.in);

System.out.println("What is the name of the file containing the scores?");
String file = scnr.nextLine();
Scanner fileScan = new Scanner(new File(file));

// Reading number of rows (number of students) and columns (number of assignments)
// Just use fileScan.nextInt() to get int instead of using Integer.parseInt(fileScan.nextLine())

int rows = fileScan.nextInt();
int col = fileScan.nextInt();

int[][] scores = new int[rows][col]; // Declaring 2D array to store scores

// Using nested-for loop to read all assignment marks into 2D array

for (int i=0; i<rows; i++) {

for (int j=0; j<col; j++) {

scores[i][j] = fileScan.nextInt();
}
}

System.out.println("Array of scores:");

for (int c = 0; c < rows; c++) {

// Printing each row using Arrays.toString

System.out.println(Arrays.toString(scores[c]));
}

System.out.println("Average score of each assignment:");

for (int c = 0; c < col; c++) {
int sum = 0;
for (int j = 0; j < rows; j++) {
sum = sum + scores[j][c];
}

// Declaring variable for average

double avg = sum / 3.0;

System.out.println("Assignment #" + (c + 1) + " Average = " + new DecimalFormat("0.0").format(avg)); // formatting to 1 decimal place
}

}
}

score.txt

3
4
9 6 10 5
2 2 0 0
10 10 9 10

SAMPLE OUTPUT

---------------------------------------------------------------------------------------------------------

COMMENT DOWN FOR ANY QUESTIONS...........
HIT A THUMBS UP IF YOU DO LIKE IT!!!


Related Solutions

Please write a java program to write to a text file and to read from a...
Please write a java program to write to a text file and to read from a text file.
Design a program that will read each line of text from a file, print it out...
Design a program that will read each line of text from a file, print it out to the screen in forward and reverse order and determine if it is a palindrome, ignoring case, spaces, and punctuation. (A palindrome is a phrase that reads the same both forwards and backwards.) Example program run: A Toyota's a Toyota atoyoT a s'atoyoT A This is a palindrome! Hello World dlroW olleH This is NOT a palindrome! Note: You are only designing the program...
Write a complete C program that read the text below and save the text in a...
Write a complete C program that read the text below and save the text in a new file "second.txt" with the same text written in all uppercase. "Beedle the Bard was an English wizard and author of wizarding fairytales. Beedle was born in Yorkshire, England. At some point in his life he wrote The Tales of Beedle the Bard . The only known image of Beedle is a woodcut that shows him with a "luxuriant" beard. Beedle wrote in ancient...
(C++) Write a program to read from a grade database (data.txt). The database (text file) has...
(C++) Write a program to read from a grade database (data.txt). The database (text file) has students names, and grades for 10 quizzes.Use the given function prototypes to write the functions. Have main call your functions. The arrays should be declared in main() and passed to the functions as parameters. This is an exercise in parallel arrays, int and char 2 dim arrays. Function prototypes: int readData(ifstream &iFile, int scores[][10], char names[][30]); This functions takes the file stream parameter inFile...
Python program: Write a program that reads a text file named test_scores.txt to read the name...
Python program: Write a program that reads a text file named test_scores.txt to read the name of the student and his/her scores for 3 tests. The program should display class average for first test (average of scores of test 1) and average (average of 3 tests) for each student. Expected Output: ['John', '25', '26', '27'] ['Michael', '24', '28', '29'] ['Adelle', '23', '24', '20'] [['John', '25', '26', '27'], ['Michael', '24', '28', '29'], ['Adelle', '23', '24', '20']] Class average for test 1...
I need to write a java program (in eclipse) that will read my text file and...
I need to write a java program (in eclipse) that will read my text file and replace specific placeholders with information provided in a second text file. For this assignment I am given a text file and I must replace <N>, <A>, <G>, with the information in the second file. For example the information can be John 22 male, and the template will then be modified and saved into a new file or files (because there will be multiple entries...
How do I do this: Write a program that can read a text file of numbers...
How do I do this: Write a program that can read a text file of numbers and calculate the mean and standard deviation of those numbers. Print the result in another text file. Put the result on the computer screen. EACH LINE OF THE PROGRAM MUST BE COMMENTED!
Write a C++ program to open and read a text file and count each unique token...
Write a C++ program to open and read a text file and count each unique token (word) by creating a new data type, struct, and by managing a vector of struct objects, passing the vector into and out of a function. Declare a struct TokenFreq that consists of two data members: (1) string value; and (2) int freq; Obviously, an object of this struct will be used to store a specific token and its frequency. For example, the following object...
You are required to read in a list of stocks from a text file “stocks.txt” and...
You are required to read in a list of stocks from a text file “stocks.txt” and write the sum and average of the stocks’ prices, the name of the stock that has the highest price, and the name of the stock that has the lowest price to an output file. The minimal number of stocks is 30 and maximal number of stocks in the input file is 50. You can download a input file “stocks.txt” from Canvas. When the program...
Write a program that opens the file: "Lab6A_Data", reads all the values from the file, and...
Write a program that opens the file: "Lab6A_Data", reads all the values from the file, and calculates the following: A) The number of values in the file B) The sum of all the values in the file (a running total) C) The average of all the values in the file. D) The minimum value. E) The maximum value. F) The range of the data set of values. G) The number of times the value: '357' occurrs in the file. Display...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT