answersLogoWhite

0

there really isnt a progam to draw humans, u will have to use letters

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 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.


Write and execute program to make five vertical lines parallel to each other on the screen in qbasic?

In QBASIC, you can use the LINE statement to draw vertical lines. Here’s a simple program to draw five vertical lines parallel to each other: SCREEN 0 FOR i = 1 TO 5 LINE (50 * i, 0)-(50 * i, 200), 15 ' Draws vertical lines at intervals of 50 pixels NEXT i This code sets the screen mode and uses a loop to draw five vertical lines spaced 50 pixels apart, from the top to the bottom of the screen. Adjust the coordinates and color as needed.


How can kids learn to draw a human figure?

Kids can learn to draw a human figure by practicing basic shapes and proportions, studying anatomy, observing real people, and following step-by-step tutorials. Practice and patience are key to improving their drawing skills.


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 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.


Draw a sequence diagram for withdrawing money from ATM?

If you were to dry a sequence diagram for withdrawing money from an ATM, you would first draw a human figure holding an ATM card. You would then draw the figure placing the ATM card in the machine. Next would be a drawing of the figure pushing buttons, then taking money, and finally removing the card.


How do you draw human figure?

as with drawing anything, best way is to learn to draw what your eyes see and not what your brain tries to tell your it sees - your brain works by having you draw from past memories or preconceptions of what something "should" look like rather than what you actually see - the book "drawing on the right side of the brain" teaches you how to draw naturally what you really see - once you master this you can draw anything no matter how complex and you will find the human figure is no more difficult to draw than anything else


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 does custom aim draw and program have in common?

Custom program Aim and draw have in common


What figure did Cassie draw?

Cassie draw a ray


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.