This section will involve several challenges using an FTC robot simulator. Go through the FTC Intro shown below.
NOTE: The quizzes you need to pass are on the OnbotJAVA not the block code.
FTC SIM Please make an account!
Once you finish, click "Continue Working"
Go to the top left and click "Onbot Java", click "Yes" to translating blocks to Java
No Quiz :))
CHALLENGE: Solve all remaining courses using Onbot Java ONLY!
6 - SQUARE CHALLENGE: Use a "for" loop to simplify the code required to solve this course.
For loop example:
// this will loop 10 times the code inside the curly braces
for (int count = 0; count < 10; count++) {
}