User Tools

Site Tools


dowhile

This is an old revision of the document!


do-while Schleife

Wie die while Schleife, gehört die do-while Schleife zu den Klassikern. Der Unterschied zur while Schleife ist, dass der Schleifenkörper mindestens einmal durchlaufen wird, da die Bedingung erst zum Schluss geprüft wird.

Bei den folgenden Beispielen ist die Ausgabe wird wieder von 0 bis 9 gezählt.

Bash

Es gibt keine do-while Schleife in der bash. Die Tricksereien, um trotzdem eine zu simulieren, werden hier weg gelassen.

C++

#include <iostream>
#include <cstring>
 
int main() {
    // Variable anlegen
    int counter = 0;
 
    do {
        printf("%s%d%s", "The counter is ", counter, "\n");
        counter++;
    } while (counter < 10);
}

C#

using System;
 
namespace IfStatements 
{
    class ShowIf
    {
        static void Main() 
        {
            // Variable anlegen
            int counter = 0;
 
            do {
                System.WriteLine("The counter is ", counter);
                counter++;
            } while (counter < 10);
        }
    }
}

Golang

In go ist so ziemlich alles eine for Schleife. Es kommt darauf an, wie man es hin schreibt.

package main
 
import (
    "fmt"
)
 
func main() {
    // Variable anlegen
    counter := 0;
 
    for counter < 10 {
        fmt.Println("The counter is ", counter)
        counter++
    }
}

Java

public class WhileLoop {
    public static void main(String[] args) {
        // Variable anlegen
        int counter = 0;
 
        while (counter < 10) {
            System.out.println("The counter is "+counter);
            counter++
        }
}

Javascript

<!DOCTYPE HTML>
<!-- HTML Grundstruktur -->
<html>
  <body>
    <script>
      // Variable anlegen
      var counter = 0;
 
      while (counter < 10) {
          alert("The counter is "+counter);
          counter++;
      }
    </script>
  </body>
</html>

Perl

#!/usr/bin/perl
 
use strict;
use warnings;
 
my $counter = 0;
 
while ($counter < 10) {
    print "The counter is $counter\n";
    $counter += 1;
}

PHP

<?php
 
// Variable anlegen
$counter = 0;
 
while ($counter < 10) {
    echo "The counter is $counter\n";
    $counter++;
}

Python3

#!/usr/bin/python3
 
counter = 0
 
while counter < 10:
    print("The counter is "+str(counter))
    counter += 1
dowhile.1498579651.txt.gz · Last modified: 2017/06/27 18:07 by gg