Puzzle L5

Print the integers from 15 down to 0, one per line

[E-3]Write a main() program that prints the integers 15 down to 0 one per line. The output of the program is:

15
14
13
. . .
2
1
0

Edit the previous program to create this one.



Previous Page        Answer         Next Page         Home