Puzzle L4

Print the integers from -7 to +7, one per line

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

-7
-6
. . .
-1
 0
 1
. . .
 6
 7

Edit the previous program to create this one.



Previous Page        Answer         Next Page         Home