Computer Science, asked by akifashfaq20, 1 year ago

How to draw a circle in qb64

Answers

Answered by jannatzubair71
1
if you want to draw a circle in qb64 then go to YouTube if you have and search Q Basic tutorial 28-drawing part- 1-qb 64-line-box-box fill-paint-circle ...... hope it is helpful to you
Answered by satyammridul23379
1

The command CIRCLE is used to draw circles in BASIC.

The command CIRCLE is followed by, in order:

An (x, y) coordinate pair that states the center of the circle

A comma

A numeric value for the radius of the circle

So, a circle with its center at x = 200 and y = 300 with a radius of 50  would be drawn with:

CIRCLE (200, 300), 50

The example program demonstrates a different circle.

Similar questions