DEV Community

John Phan
John Phan

Posted on

SE371 - Assignment 1

First assignment's task was to set up my Java development environment and write a simple Fibonacci program. The setup process involved installing the JDK, configuring IntelliJ IDEA, and making sure everything worked from the console.
Since I’ve had prior experience working as an intern, the Git setup and IDE configuration steps felt very familiar to me. I’ve used similar workflows before — cloning repositories, committing changes, and pushing to remote branches — so this part was smooth and quick.
The Fibonacci assignment itself was straightforward: write a small Java program that calculates the n-th number in the Fibonacci sequence using simple control structures. I implemented it iteratively and tested a few sample inputs to confirm correctness.

Top comments (0)