- This event has passed.
7 PM – Intro to Java – Sebastian
June 3 @ 7:00 pm - 8:00 pm
Today We Did
- Continued reviewing methods so we have a full understanding of everything that’s going on when we code now!
- Reviewed that the static keyword is used for methods that belong to some class more than some object.
- Reviewed that the private keyword is used for methods and member variables that shouldn’t be accessed when people make an object of your class.
- AYC Logic’s observed holidays: https://www.ayclogic.com/observed-holidays/
- In case you need anything, feel free to email me at sebastian@ayclogic.com
Homework
- Please submit your homework into your Google Drive
- Homework:Create method:
convertFromFahrenheitToCelsius()
– 1 int parameter Fahrenheit
– convert F to C using formula: Celsius = (Fahrenheit – 32) * (5/9)
– return the resulting temperature in Celsius