Today we went over:
Standard functions and methods
These are basically preset functions that we can use that are provided to us by the Java Standard Library. For example, after importing java.lang.Math, we have access to methods such as the following:
(a full list can be found at https://docs.oracle.com/javase/8/docs/api/java/lang/Math.html)
Then we did some practice problems and 2 Kahoots.
Homework for this week can be found here: https://docs.google.com/forms/d/e/1FAIpQLSedXfCxD0EeQ1pQYysIw3jgRBXZGsD_3oldmzlPDf7WvbfCvw/viewform?usp=sf_link
As always, I'll try and get the solution out by Tuesday night.
Solution is now up for this week's homework: https://replit.com/@offexe/10-6hw#Main.java Note that you do not have to create a new function for calculating the average. The important part is making sure you used a double instead of an int.