Loops/Downward for: Difference between revisions

From Rosetta Code
Content added Content deleted
(New task, C++ and Pascal)
 
Line 13: Line 13:
writeln(i);
writeln(i);
</pascal>
</pascal>

=={{header|Python}}==
<python>
for i in xrange(10, -1, -1):
print i
</python>

Revision as of 19:50, 18 April 2008

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>

Python

<python> for i in xrange(10, -1, -1):

   print i

</python>