How to read a text file and store the elements into a linked
list in java?
Example of a text file:
CS100, Intro to CS, John Smith, 37, 100.00
CS200, Java Programming, Susan Smith, 35, 200.00
CS300, Data Structures, Ahmed Suad, 41, 150.50
CS400, Analysis of Algorithms, Yapsiong Chen, 70, 220.50
and print them out in this format:
Course: CS100
Title: Intro to CS Author:
Name = John Smith,
Age = 37
Price: 100.0.
And also to print out the...