Loops/Downward for

From Rosetta Code
Revision as of 19:37, 18 April 2008 by Ce (talk | contribs) (New task, C++ and Pascal)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Task
Loops/Downward for
You are encouraged to solve this task according to the task description, using any language you may know.

Write a for loop which writes a countdown from 10 to 0.

C++

<cpp> for(int i = 10; i >= 0; --i)

 std::cout << i << "\n";

</cpp>

Pascal

<pascal> for i := 10 downto 0 do

 writeln(i);

</pascal>