Do Project 3.3 (1st ed.) or Project 6 (2nd ed. & 3rd ed.) Fibonacci numbers. List the first 100 numbers and the ratio of a number to its previous number, such as 1/1 = 1, 2/1 = 2, 3/2 = 1·5, 5/3 = 1·666..., 8/5 = 1·6, 13/8 = 1·625, 21/13 = 1·61538....
Based on your study of Display 3.8, write a code to find the max and min of a list of number. For example, given 1,3,5, and9, the max is 9 and the min is 1. Your program should be able to process a list of any length.
Write a program to generate the series 1, 1, 2, 3, 5, 8, 13, ... The series has a property that the third number is the sum of the first and second numbers. For example, 2=1+1, 3=1+2, and 5=2+3
2. The identifier BufferedReader is normally abbreviated as BR in programming language C. However, Java programmers normally do not use abbreviations for identifiers. What are the advantages and disadvantages of not using abbreviations?