answersLogoWhite

0

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

User Avatar

Wiki User

11y ago

What else can I help you with?

Continue Learning about Engineering

How to draw 3-d pictures in qbasic?

Just smile in front of it and say you don't need to smile as iam already doing it given by: dollfy dadhra


How you draw a circle in qbasic?

You need the screen coordinates of the end-points. That's another whole topic.Say the end-points are (A,B) and (C,D).To draw a solid line connecting these points:LINE (A,B) - (C,D)


How do you open a Qbasic file?

QBASIC GRAPHICS There any many different things you can draw in QBASIC; ranging from... -dots -lines -rectangles -circles -shapes empty/or, filled in(painted) -you can even do LOGO style programming to draw graphics with; by joining up connected lines -animations are possible, too ==== QBASIC BUILT-IN HELP FILE + CODE EXAMPLES In order to view the QBASIC built-in Help file...; first, load the QBASIC program itself...; and, then, do a combination key press of: [SHIFT] + [F1] Use the built-in QBASIC Help file to learn more about how to use these 'graphic related' commands, and, more...! The QBASIC Help file also contains plenty of 'example codes'; which you can just use 'copy & paste'; then, RUN...to see what the output effect will be...???


How do you draw a robot?

for the head draw a square then the neck draw a ting rectangle ,for the body draw a sqare or a rectangle it depends what robot you want to draw,for the legs draw a small skinney rectangle and ll the rectangles i said be for are going up and down so last the feet are laying on the ground and are a rectangle


C program to Draw a line chart?

draw a line chart.

Related Questions

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 should you do to draw a boat?

Get a good picture of a boat, and draw it using that reference.


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.


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


How do you draw a flow diagram to demonstrate floating and sinking?

Bottle


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


In qbasic How many line commands are required to draw a square?

In QBASIC, you can draw a square using just a few line commands. You typically need a command to set the graphics mode, followed by a loop or multiple line commands to draw each side of the square. For example, using the LINE command, you can draw a square with four separate LINE statements or a loop that iterates four times. In total, you would need at least 5 commands if you include setting the graphics mode and drawing the lines.


How do you draw circle in qbasic?

In QBasic, you can draw a circle using the CIRCLE statement. The syntax is CIRCLE (x, y), radius, where (x, y) is the center of the circle, and radius is the radius of the circle. For example, CIRCLE (100, 100), 50 would draw a circle with a center at coordinates (100, 100) and a radius of 50 pixels. You can also specify a color by adding a third parameter, like CIRCLE (100, 100), 50, 15 for a circle in color 15.


How do you draw a old wooden boat?

by pensil


How to draw 3-d pictures in qbasic?

Just smile in front of it and say you don't need to smile as iam already doing it given by: dollfy dadhra


How yo draw a star in qbasic?

In QBASIC, you can draw a star using the LINE and CIRCLE commands to create a star shape. For example, you can use the LINE command to connect points that form the star's points. Here's a simple example: SCREEN 12 LINE (100, 100)-(200, 100), 15 ' Draw horizontal line LINE (150, 50)-(150, 150), 15 ' Draw vertical line LINE (100, 100)-(200, 100), 15 ' Draw diagonal lines to form star points Adjust the coordinates to modify the star's size and shape.