Einzelnen Beitrag anzeigen

Benutzerbild von Ultimator
Ultimator

Registriert seit: 17. Feb 2004
Ort: Coburg
1.860 Beiträge
 
FreePascal / Lazarus
 
#7

Re: Win Niki Code Formatierung

  Alt 19. Jun 2005, 18:48
Ich würde das so machen:
Delphi-Quellcode:
program Insel_mit_Bergen;

procedure drehe_rechts;
begin
  drehe_links;
  drehe_links;
  drehe_links;
end;

begin
  repeat
    if vorne_frei then
      vor;
    if rechts_frei and vorne_frei then
      begin
        drehe_rechts;
        vor;
      end;
    if not rechts_frei and not vorne_frei then
      drehe_links;
  until platz_belegt;
end.
Julian J. Pracht
  Mit Zitat antworten Zitat