6.18 LAB: Parsing food data
Given a text file containing the availability of food items,
write a program that reads the information from the text file and
outputs the available food items. The program first reads the name
of the text file from the user. The program then reads the text
file, stores the information into four separate arrays, and outputs
the available food items in the following format: name (category)
-- description
Assume the text file contains the category, name, description,
and availability of at least one food item, separated by a tab
character.
Ex: If the input of the program is:
and the contents of food.txt are:
the output of the program is:
import java.util.Scanner;
import java.io.FileInputStream;
import java.io.IOException;
public class LabProgram {
public static void main(String[] args) throws
IOException {
Scanner scnr = new Scanner(System.in);
/* Type your code here. */
}
}
6.18 LAB: Parsing food data Given a text file containing the availability of food items, write a program that reads the
-
- Posts: 43759
- Joined: Sat Aug 07, 2021 7:38 am