answersLogoWhite

0

ooo

o o

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

How do you draw a boat floating in river at qbasic?

You need to draw this \______/ floating on water to show a floating boat.


How do you write not equal to sign in qbasic?

Well, in QBasic, to write the "not equal to" sign, you can use the "<>" symbol. It's like two friends standing side by side, but not quite holding hands - they're similar, but not exactly the same. Just remember, in the world of QBasic, this symbol will help you show when things are not equal.


How draw solar system in qbasic?

In QBASIC, you can draw basic shapes using the LINE and CIRCLE commands. To draw a simple representation of the solar system, you would need to create circles representing the sun and planets, then use the LINE command to draw lines connecting the planets to the sun in their respective orbits. You can also add text labels for each planet to make it more informative. Remember, QBASIC is a basic programming language, so the graphics may be limited in detail.


What does the olympic symbol stand for?

the Olympic symbol Stands For Da 5 Major Regions Of Da World


How do you draw an arc in qbasic?

To draw an arc in QBasic, you can use the Circle statement, specifying the center coordinates, radius, and the starting and ending angles. The syntax is Circle (x, y), radius, start_angle, end_angle. For example, Circle (100, 100), 50, 0, 90 would draw a quarter-circle arc from 0 to 90 degrees centered at (100, 100) with a radius of 50.


What is the specific name of Olympic symbol in English?

Olympic games


Can you use the Olympic symbol?

no


Why are the linked rings and Olympic symbol?

Why are the rings on the Olympic symbol linked?!They represent the 5 colonies friendship!


How to draw equilateral triangle in qbasic?

line (320,240)-(340,240),15 line (310,230)-(320,240),15 line (310,230)-(340,240),15


What extension would a file saved in Qbasic have?

the extensions of qbasic are that, there are only 80 pixels to write in the qbasic


How do you draw a trapezium in qbasic?

To draw a trapezium in QBasic, you can use the LINE statement to connect the vertices of the trapezium. First, define the coordinates of the four corners of the trapezium. Then, use the LINE command to draw lines between these points. For example: LINE (x1, y1)-(x2, y2) ' Draw bottom side LINE (x2, y2)-(x3, y3) ' Draw right side LINE (x3, y3)-(x4, y4) ' Draw top side LINE (x4, y4)-(x1, y1) ' Draw left side Replace (x1, y1), (x2, y2), etc., with the actual coordinates of your trapezium’s corners.


How do you draw rectangle in Qbasic?

with line statement, we can also draw boxes. SCREEN 7 COLOUR 5, 15 CLS LINE(60,60)-(130,100),6,B the letter B indicates the box option