due Feb 14, 11am...
(biblio.java) assignment
The primary purposes of this assignment are
1. to get used to String class operations.
2. to get used to switch conditional statement.
The secondary purpose is to get used to bibliography styles.
Your program must prompt users to choose the style of bibliography types (a for ACM, i for IEEE, l for LNCS, all others for default style).
Your program then must print the correct style.
e.g., suppose you want to cite the following article
http://www.pds.ewi.tudelft.nl/pubs/papers/scicomp01.pdf
Inputs:
Author1 = "Henk J. Sips";
Author2 = Kees van Reeuwijk";
TITLE = "Java for Scientific Computation: Prospects and Problems"
booktitle = "LSSC'01"
PAGES = "236-246"
YEAR = 2001
Then based on the user's choice, your program must print
ACM:
Sips, H.J. and Reeuwijk, K.V. Java for Scientific Computation: Prospects and Problems. In Proceedings of LSSC. 2001, 236-246.
IEEE:
H.J. Sips and K.V. Reeuwijk, "Java for Scientific Computation: Prospects and Problems", in Proc. LSSC, 2001, pp.236-246.
LNCS:
Sips, H.J., Reeuwijk, K.V.: Java for Scientific Computation: Prospects and Problems. In LSSC(2001) 236-246
default:
Henk J. Sips, Kees van Reeuwijk. Java for Scientific Computation: Prospects and Problems. In Proceedings of LSSC'2001. pp.236~246
===================
1. must use the String methods you learned in class.
2. must use the switch conditional statements.