question archive Use nested for-loops to have the turtle draw a snowflake of polygons

Use nested for-loops to have the turtle draw a snowflake of polygons

Subject:Computer SciencePrice:2.87 Bought7

Use nested for-loops to have the turtle draw a snowflake of polygons. Use the variable turnAmount to turn after each shape and the variable n for the sides of the polygon.

import java.util.*;
import java.awt.*;

public class TurtleSnowflakes
{
public static void main(String[] args)
{
World world = new World(300,300);
Turtle yertle = new Turtle(world);
yertle.setColor(Color.blue);

// Use this variable in the loops
int turnAmount = 30;

// 1. Write a for loop that runs many times
// 2. Change it to use turnAmount to figure out how many times to run

// 1 & 2. Write an inner loop that draws a triangle (3 sides, 120 degree turns)
// 3. Then change it to be any polygon with a variable n

// turn turnAmount degrees before drawing the polygon again

// 4. Add an if statement that changes the colors depending on the loop variables

world.show(true);
}
}

Option 1

Low Cost Option
Download this past answer in few clicks

2.87 USD

PURCHASE SOLUTION

Option 2

Custom new solution created by our subject matter experts

GET A QUOTE

rated 5 stars

Purchased 7 times

Completion Status 100%