1. Write a program that will count from 1 to 12 and print the count, and its square, for each
count.
1 1
2 4
3 9
etc..
2. Write a program that counts from 1 to 12 and prints the count and its inversion to 5 decimal
places for each count. This will require a floating point number.
1 1.00000
2 .50000
3 .33333
4 .25000
etc.
3. Write a program that will count from 1 to 100 and print only those values between 32 and
39, one to a line.