View Problem

Perform an action a fixed number of times with a counter

Display the string "10 .. 9 .. 8 .. 7 .. 6 .. 5 .. 4 .. 3 .. 2 .. 1 .. Liftoff!"
ExpandDiskEdit
php
for($i = 10; $i > 0; $i--) {
echo $i." .. ";
}
echo "Liftoff!";

Submit a new solution for php
There are 21 other solutions in additional languages (clojure, cpp, csharp, erlang ...)