ASSIGNMENT #1: Fibonacci Numbers



The assignment's main topic: get used to working with JAVA and NetBeans by solving the following small programming task:
The Fibonacci numbers are a series of numbers that is very important in many mathematical problems. It is a series that starts with the numbers 0,1 and continues by summing the previous two numbers:
0, 1, 1 (=0+1), 2 (=1+1), 3 (=1+2), 5 (=2+3), 8 (=3+5), 13, 21 ...

Your task: write a JAVA program that prints the first 30 numbers of the Fibonacci series on the screen.
As i mentioned, we'll never use the numbers for anything, it's just to get used to JAVA (if you aren't already !)