Data Structures and Algorithms with Object-Oriented Design Patterns in Java by Preiss
A Data Structure and Algorithms book which is a bit theoretical but I am sure you can make it. http://www.brpreiss.com/books/opus5/html/book.html
The Java Programming Language by Arnold, Gosling, Holmes
QUESTION: Projectile Motion: Write a program which calculates the final coordinates of a thrown object (take g as 9.81)
Your program will read:
initial x coordinate
initial y coordinate
initial x velocity
initial y velocity
seconds passed
Your program will output:
Final x coordinate
Final y coordinate