About 27,400,000 results
Open links in new tab
  1. How to make cross shaped pattern corresponding with user input in Pascal?

    Nov 18, 2015 · Here's what I've tried. I put the user input value with 10 for testing purpose. begin. for b:=1 to n do. begin. if(b=space1) OR (b=space2-1) then. begin. write(' '); …

  2. Developing with Graphics - Free Pascal wiki

    5 days ago · Suppose you want to draw the shape of a country with a large lake inside from both of which you have some boundary points. Basically the Polygon() method of the LCL canvas is …

  3. TShape - Free Pascal wiki

    Aug 12, 2017 · TShape is a component that creates a shape (triangle, circle or square) on the surface of its parent (such as a TForm). It is a TGraphicControl descendant and is available …

  4. Drawing Shapes in Pascal: Master the for-loop Technique!

    Apr 5, 2025 · Discover how to draw complex shapes using `Pascal` programming! Learn to use loops effectively for creating designs and outputs.---This video is based on the...

  5. Complete newbie to Free Pascal Graphics, needing a bit of help!

    Aug 9, 2016 · However, there are no Turtle Graphics for Free Pascal, and I've been trying to research how to do a couple of simple drawings of a circle or a bar for a bar graph.

  6. Shapes OO Example: Component Pascal Code - The Trek BBS

    MODULE Rectangle; IMPORT Shape, Out; TYPE Rectangle* = POINTER TO RectangleDesc; RectangleDesc* = RECORD (Shape.ShapeDesc) width: INTEGER; height: INTEGER; END; (* …

  7. Square with diagonal in Pascal - Stack Overflow

    May 30, 2015 · I have written an application which will write square with diagonal (from left side) - output: + * * * * * + * * * * * + * * * * * + * * * * * + Code for first application:

  8. Pascal cheat sheet - Programming Idioms

    Pascal uses unit math to define type float. You can use one of Pascal's floating point types directly (being type single or type double), depending on which precision is required. Do …

  9. Drawing, shapes? Canvas? Disk Defrag map style - Free Pascal

    Sep 25, 2021 · You should look at the TDrawGrid and implement drawing your own square areas... So drawgrid may be the solution. I will have to revisit the progressbar in a cell of a …

  10. for loop - Pascal - Shape Drawing - Stack Overflow

    Nov 28, 2023 · procedure print_char_times (ch : char; n : integer); var i : integer; begin for i := 1 to n do write (ch) end; Now you don't need to repeat this loop over and over. With this defined, …

Refresh