Write a method for Turtle to draw a pentagon. Pass in the length of the sides.

What will be an ideal response?


```
public void drawPentagon ( int width )
{
this . turn ( 3 0 ) ;
this . forward ( width ) ;
this . turn ( 7 2 ) ;
this . forward ( width ) ;
this . turn ( 7 2 ) ;
this . forward ( width ) ;
this . turn ( 7 2 ) ;
this . forward ( width ) ;
this . turn ( 7 2 ) ;
this . forward ( width ) ;
this . turn ( 7 2 ) ;
}
```

Computer Science & Information Technology

You might also like to view...

The switch statement equivalent to the following if statement is:

``` if (digit == 0) value = 0; else if (digit == 1) value = 0; else if (digit == 2) value = 4; else value = 8; a.switch (digit) { case 0: case 1: value = 0; break; case 2: value = 4; break; default: value = 8; } b. switch (value) { case 0: case 1: value = 0; break; case 2: value = 4; break; default: value = 8; } c. switch (digit) { case 0: case 1: value = 0; case 2: value = 4; default: value = 8; } d. switch (digit) { case 0: case 1: value = 0; break; case 2: value = 4; } e. switch (digit) case 0: case 1: { value = 0; break; } case 2: { value = 4; break; } default: { } Short Answer value = 8; break; ```

Computer Science & Information Technology

The Android operating system is the embedded version of ________

A) Mac OS X B) Linux C) Windows D) UNIX

Computer Science & Information Technology

The ‘Accept/Reject Changes' command is located on the ____ menu.

A. Modify Changes B. Track Changes C. Select Changes D. Review Changes

Computer Science & Information Technology

The term __________ is used to refer to the practice of deferring the linkage of some external modules until after the load module has been created.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology