C:\Users\lyoung1\Documents\Teach\COSC1435\LabExamples\2010Fall>lab13lny Enter an integer: 0 The decimal number 0 in 16-bit binary is 0000 0000 0000 0000. The 16-bit binary number 0000 0000 0000 0000 converted to decimal is 0. Repeat [Y or N] y Enter an integer: 1 The decimal number 1 in 16-bit binary is 0000 0000 0000 0001. The 16-bit binary number 0000 0000 0000 0001 converted to decimal is 1. Repeat [Y or N] y Enter an integer: -1 The decimal number -1 in 16-bit binary is 1111 1111 1111 1111. The 16-bit binary number 1111 1111 1111 1111 converted to decimal is -1. Repeat [Y or N] y Enter an integer: 3 The decimal number 3 in 16-bit binary is 0000 0000 0000 0011. The 16-bit binary number 0000 0000 0000 0011 converted to decimal is 3. Repeat [Y or N] y Enter an integer: -3 The decimal number -3 in 16-bit binary is 1111 1111 1111 1101. The 16-bit binary number 1111 1111 1111 1101 converted to decimal is -3. Repeat [Y or N] y Enter an integer: 8 The decimal number 8 in 16-bit binary is 0000 0000 0000 1000. The 16-bit binary number 0000 0000 0000 1000 converted to decimal is 8. Repeat [Y or N] y Enter an integer: -8 The decimal number -8 in 16-bit binary is 1111 1111 1111 1000. The 16-bit binary number 1111 1111 1111 1000 converted to decimal is -8. Repeat [Y or N] y Enter an integer: 15 The decimal number 15 in 16-bit binary is 0000 0000 0000 1111. The 16-bit binary number 0000 0000 0000 1111 converted to decimal is 15. Repeat [Y or N] y Enter an integer: -15 The decimal number -15 in 16-bit binary is 1111 1111 1111 0001. The 16-bit binary number 1111 1111 1111 0001 converted to decimal is -15. Repeat [Y or N] y Enter an integer: -32768 The decimal number -32768 in 16-bit binary is 1000 0000 0000 0000. The 16-bit binary number 1000 0000 0000 0000 converted to decimal is -32768. Repeat [Y or N] y Enter an integer: 32767 The decimal number 32767 in 16-bit binary is 0111 1111 1111 1111. The 16-bit binary number 0111 1111 1111 1111 converted to decimal is 32767. Repeat [Y or N] n C:\Users\lyoung1\Documents\Teach\COSC1435\LabExamples\2010Fall>^A