146k views
1 vote
Write a program that draws a colored dartboard! Alter the "Dartboard" program you wrote previously so that each circle is filled in with a color that a user has given

remember that your dartboard:
Consists of 4 concentric circles
Has the center circle placed in the middle of the canvas with a radius of 25
Has three circles surrounding the middle, that each increase in radius by 25 pixels
Hints:Circles stack on top of one another, so you will need to start with the largest circle rather than the smallest in order to see each circle drawn!
Use a variable called color_choice to save the user input.
A variable called radius shoud be used to control each circle’s size.

User LukeLR
by
8.2k points

2 Answers

5 votes

Final answer:

To draw a colored dartboard, use a graphics library to draw 4 concentric circles, starting with the largest, and allow the user to choose the color of each circle.

Step-by-step explanation:

To create a program that draws a colored dartboard with 4 concentric circles, you can use a graphics library in a programming language like Python with a module such as Pygame or tkinter. Here's a basic outline of the steps you would need to take:

This program would not only create a visual representation of a dartboard but also incorporate user interaction by allowing them to choose the colors of each circle

User Hetzbh
by
7.8k points
2 votes

Final answer:

To draw a colored dartboard, start with the largest circle using the biggest radius, then decrement the radius for subsequent smaller circles while filling each with the user's color choices.

Step-by-step explanation:

Creating a colored dartboard program requires using programming concepts such as looping structures, variables, and graphical functions. In programming languages such as Python, you could use modules like tkinter for graphical user interface to draw the dartboard. Here's a step-by-step guide to modifying the dartboard program:

  • Import the necessary graphics library, like tkinter.
  • Ask the user for their color choices for each circle of the dartboard.
  • Store each color in a variable, such as color_choice.
  • Start with the largest circle, use a radius variable initially set to 100 (for the outermost circle).
  • For each circle, decrement the radius by 25 and change the color according to user input, this creates concentric circles.
  • Ensure you draw the circles from the largest to the smallest (in descending order of radius) to make all of them visible.

Editing the program this way allows for the creation of a user-customized, colorful dartboard. Remember to update your canvas after each drawing to reflect the changes.

User Pat James
by
7.5k points