Computer Science, asked by preeti1516, 1 year ago

What do the following PAINT commands indicate?

Attachments:

Answers

Answered by MX1992
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