User Tools

Site Tools


while

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
while [2017/06/27 17:51] – [C++] ggwhile [2017/06/29 10:32] (current) – [Java] gg
Line 6: Line 6:
  
 ===== Bash ===== ===== Bash =====
 +=== Das Programm ===
 <code bash> <code bash>
 #!/bin/bash #!/bin/bash
Line 14: Line 15:
     let COUNTER=COUNTER+1      let COUNTER=COUNTER+1 
 done done
 +</code>
 +
 +=== Ausführen === 
 +<code bash>
 +chmod +x while.sh # als ausführbar markiern
 +./while.sh        # ausführen
 </code> </code>
  
 ===== C++ ===== ===== C++ =====
 +=== Das Programm ===
 <code cpp> <code cpp>
 #include <iostream> #include <iostream>
Line 29: Line 37:
     }     }
 } }
 +</code>
 +
 +=== Kompilieren und Ausführen ===
 +Die Datei while.cpp erstellen und so ausführen:
 +<code bash>
 +g++ -Wall -g -std=c++14 while.cpp -o while # kompilieren
 +./while                                    # ausführen
 </code> </code>
  
Line 35: Line 50:
 using System; using System;
  
-namespace IfStatements +namespace WhileLoop
 { {
-    class ShowIf+    class ShowWhile
     {     {
         static void Main()          static void Main() 
Line 54: Line 69:
  
 ===== Golang ===== ===== Golang =====
-In go ist so ziemlich alles eine for Schleife. Es kommt darauf an, wie man es hin schreibt.+In go ist so ziemlich alles eine for Schleife. Es kommt nur darauf an, wie man es hin schreibt.
  
 +=== Das Programm ===
 <code go> <code go>
 package main package main
Line 73: Line 89:
 } }
 </code> </code>
 +
 +=== Ausführen ===
 +[[https://tour.golang.org|Online go compiler]]
  
 ===== Java ===== ===== Java =====
 +=== Das Programm ===
 <code java> <code java>
 public class WhileLoop { public class WhileLoop {
Line 83: Line 103:
         while (counter < 10) {         while (counter < 10) {
             System.out.println("The counter is "+counter);             System.out.println("The counter is "+counter);
-            counter+++            counter++;
         }         }
 } }
 +</code>
 +
 +=== Kompilieren und ausführen ===
 +Die Datei WhileLoop.java mit obigen Inhalt erstellen und so starten
 +<code bash>
 +javac WhileLoop.java # kompilieren
 +java WhileLoop       # ausführen
 </code> </code>
  
 ===== Javascript ===== ===== Javascript =====
 +=== Das Programm ===
 <code javascript> <code javascript>
 <!DOCTYPE HTML> <!DOCTYPE HTML>
Line 106: Line 134:
 </html> </html>
 </code> </code>
 +
 +=== Ausführen ===
 +Den obigen Code in die Datei while.html einfügen und im Browser öffnen
  
 ===== Perl ===== ===== Perl =====
 +=== Das Programm ===
 <code perl> <code perl>
 #!/usr/bin/perl #!/usr/bin/perl
Line 120: Line 152:
     $counter += 1;     $counter += 1;
 } }
 +</code>
  
 +=== Ausführen ===
 +Die Datei while.pl erstellen und so ausführen:
 +<code bash>
 +perl while.pl
 </code> </code>
  
 ===== PHP ===== ===== PHP =====
 +=== Das Programm ===
 <code php> <code php>
 <?php <?php
  
 // Variable anlegen // Variable anlegen
-$age 3;+$counter 0;
  
-// switchen +while ($counter < 10) { 
-switch ($age) { +    echo "The counter is $counter\n"; 
-    case 1:  echo "Du bist ein Jahr alt"; break+    $counter++;
-    case 2:  echo "Du bist zwei Jahre alt"; break; +
-    case 3:  echo "Du bist drei Jahre alt"; break; +
-    case 4:  echo "Du bist vier Jahre alt"; break; +
-    default: echo "Ich kann nicht feststellen wie alt du bist. Bitte eine Zahl von 1-4 eingeben"; break;+
 } }
 +</code>
 +
 +=== Ausführen ===
 +Die Datei while.php mit obigen Inhalt erstellen und wie folgt ausführen:
 +<code bash>
 +php while.php
 </code> </code>
  
 ===== Python3 ===== ===== Python3 =====
-In Python gibt es kein switch im eigentlichen SinneMit ein bisschen Tricksen bekommt man trotzdem eines hin. Das wird hier aber ausgelassen.+=== Das Programm === 
 +<code python> 
 +#!/usr/bin/python3 
 + 
 +counter = 0 
 + 
 +while counter < 10: 
 +    print("The counter is "+str(counter)) 
 +    counter += 1 
 +</code> 
 + 
 +=== Ausführen === 
 +Die Datei while.py mit dem obigen Code erstellen und ausführen: 
 + 
 +<code bash> 
 +python3 while.py 
 +</code>
while.1498578694.txt.gz · Last modified: 2017/06/27 17:51 by gg