User Tools

Site Tools


for

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
for [2017/06/27 18:14] – created ggfor [2018/01/22 10:15] (current) – [for Schleife] gg
Line 1: Line 1:
 ====== for Schleife ====== ====== for Schleife ======
  
-Die for Schleife ist flexibler, als eine while Schleife. Sie ist lesbarer.+Im Grunde kann alles, was mit einer while-Schleife erledigt werden kann, auch mit der for Schleife erledigt werden. Die Vorteile sind aber ihre Lesbarkeit und dass man sich ein paar Zeilen spartda die Zählvariable, sowie die Veränderung der Zählvariable, direkt im Schleifenkopf definiert wird. \\ 
 + 
 +Die folgenden Beispiele zählen von 1 bis 10. 
 + 
 +===== Bash ===== 
 +=== Das Programm === 
 +<code bash> 
 +#!/bin/bash 
 + 
 +for i in `seq 1 10`; do  
 +    echo "The counter is $i" 
 +done     
 +</code> 
 + 
 +=== Ausführen === 
 +Die Datei for.sh anlegen und so ausführen: 
 +<code bash> 
 +chmod +x for.sh # Die Datei als ausführbar markieren 
 +./for.sh        # und ausführen 
 +</code> 
 + 
 +===== C++ ===== 
 +=== Das Programm ===  
 +<code cpp> 
 +#include <iostream> 
 + 
 +int main() { 
 +    for(int i = 1; i <= 10; i++) { 
 +        printf("%d %d%s", "The counter is", i, "\n" 
 +    } 
 +
 +</code> 
 + 
 +=== Kompilieren und ausführen ===  
 +Die Datei for.cpp mit obigen Inhalt erstellen und so zum Laufen bringen: 
 +<code bash> 
 +g++ -Wall -g -std=c++14 for.cpp -o for # kompilieren 
 +./for                                  # ausführen 
 +</code> 
 + 
 +===== C# ===== 
 +<code csharp> 
 +using System; 
 + 
 +namespace ForLoop  
 +
 +    class ShowFor 
 +    { 
 +        static void Main()  
 +        { 
 +            for(int i = 1; i <= 10; i++) { 
 +                System.WriteLine("The counter is "+i); 
 +            } 
 +        } 
 +    } 
 +
 +</code> 
 + 
 +===== Golang ===== 
 +=== Das Programm === 
 +In go ist so ziemlich alles eine for Schleife. Es kommt darauf an, wie man es hin schreibt. 
 + 
 +<code go> 
 +package main 
 + 
 +import ( 
 +    "fmt" 
 +
 + 
 +func main() { 
 +    for i:=1; i<=10; i++ { 
 +        fmt.Println("The counter is ", i) 
 +    } 
 +
 +</code> 
 + 
 +=== Kompilieren und ausführen === 
 +[[https://tour.golang.org/|Online go compiler]] 
 + 
 +===== Java ===== 
 +=== Das Programm === 
 +<code java> 
 +public class ForLoop { 
 +    public static void main(String[] args) { 
 +        for (int i = 1; i <= 10; i++) { 
 +            System.out.println("The counter is "+i); 
 +        } 
 +
 +</code> 
 + 
 +=== Kompilieren und ausführen === 
 +Die Datei ForLoop.java erstellen und auf folgende Weise kompilieren und ausführen 
 +<code bash> 
 +javac ForLoop.java 
 +java ForLoop 
 +</code> 
 + 
 +===== Javascript ===== 
 +=== Das Programm === 
 +<code javascript> 
 +<!DOCTYPE HTML> 
 +<!-- HTML Grundstruktur --> 
 +<html> 
 +  <body> 
 +    <script> 
 +      for(i = 1; i <= 10; i++) { 
 +          alert("The counter is "+i); 
 +      } 
 +    </script> 
 +  </body> 
 +</html> 
 +</code> 
 +=== Ausführen ===  
 +Die Datei for.html erstellen und im Browser öffnen. 
 + 
 +===== Perl ===== 
 +=== Das Programm === 
 +<code perl> 
 +#!/usr/bin/perl 
 + 
 +use strict; 
 +use warnings; 
 + 
 +for ($i = 1; $i <= 10; $i = $i + 1) { 
 +    print "The counter is $i"; 
 +
 +</code> 
 +=== Ausführen === 
 +Den obigen Code in die Datei for.pl einfügen und abspeichern und folgendes ausführen: 
 +<code bash> 
 +perl for.pl 
 +</code> 
 + 
 +===== PHP ===== 
 +=== Das Programm === 
 +<code php> 
 +<?php 
 + 
 +for($i = 1; $i <= 10; $i++) { 
 +    echo "The counter is $i"; 
 +
 +</code> 
 +=== Ausführen === 
 +Die Datei for.php mit dem gezeigten PHP Code erstellen und damit Laufen lassen: 
 +<code bash> 
 +php for.php 
 +</code> 
 + 
 +===== Python3 ===== 
 + 
 +Streng genommen ist die for Schleife in Python eine foreach Schleife und wird dadurch hier ausgelassen. 
for.1498580084.txt.gz · Last modified: 2017/06/27 18:14 by gg