What do the following PAINT commands indicate?
Attachments:
![](https://hi-static.z-dn.net/files/dae/9f6afbe9b0e7aec688f56b03b8fd24bc.jpg)
Answers
Answered by
1
Answer:
The "paint" command is used to change the color of the circle
The command has coordinates that tells QBasic where to start. The color number specifies the color to paint with, and the bordercolor tells the PAINT command that it should not paint further when it encounters a pixel of that color. In almost all cases, you will need to use the bordercolor parameter, simply because without it, PAINT will cover the entire screen.
PAINT ([X Coordinate],[Y Coordinate]), [Color Number], [Border Color]
Explanation:
Reference: wikibooks
Similar questions