What We Did Today:
- Reviewed concepts and tools for basic programming in Java
- Learnt the modulus operator
- Learnt the difference between Lists and Arrays
Homework:
Create a new file named Apr8_ArrayHomework.java, and submit to the google drive: here when you are finished!
- Create a new int array(6) (“numbers”) and add the following values: -100,2,3,100,-5,14
- Create a new int array(20) (“num2”) and use for loop to copy all elements from “numbers” to “num2”
- Add code to count how many negative numbers inside the “num2” array.
- After you learn how to use modulus in Java, write a code that will go through each element inside “numbers” and print all odd number inside the list using modulus (%) operator.
- Read about Java primitive data type – https://www.w3schools.com/java/java_data_types.asp
Notes:
You can reach out to me at ddjapri@ayclogic.com if you have any questions!
You can find class notes here.