1 / 8
Logische Verzweigung
90 likes | 311 Vues
Logische Verzweigung. Program [Programmname];Var a : stringbegin a := ?A? Case a of ?A? : begin[Programmzweig A] end; ?B? :begin[Programmzweig C] end; ?C? : begin[Programmzweig D] end; End;?.. CASE ? Anweisung:I
Télécharger la présentation
Logische Verzweigung
An Image/Link below is provided (as is) to download presentation
Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author.
Content is provided to you AS IS for your information and personal use only.
Download presentation by click this link.
While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server.
During download, if you can't get a presentation, the file might be deleted by the publisher.
E N D
Presentation Transcript
1. Logische Verzweigung Wenn eine logische Bedingung erfüllt ist, arbeite den Programmzweig A ab, ansonsten Programmzweig B
In Delphi wie
folgt realisiert:
If x > 10 then
Begin
[Programmzweig A]
End
Else
Begin
[Programmzweig B]
End
;
2. Logische Verzweigung
3. Schleifenprogrammierung
4. Schleifenprogrammierung
5. Schleifenprogrammierung
6. Schleifenprogrammierung
7. Aufgabe
More Related