C:\Users\lyoung.Larry-AMD64V3\SkyDrive\Documents\Teach\COSC1436\LabExamples\2013 Spring>lab03lny Convert between decimal and any base between 2 and 36 Ver 1.0, Larry Young Enter a number from 0 to 65,535: 65535 Enter the base to convert to from 2 to 36: 2 When I convert 65535 to base 2 I get: 1111 1111 1111 1111 Enter another number [Y or N]: y Enter a number from 0 to 65,535: 65535 Enter the base to convert to from 2 to 36: 16 When I convert 65535 to base 16 I get: 0000 0000 0000 FFFF Enter another number [Y or N]: y Enter a number from 0 to 65,535: 65535 Enter the base to convert to from 2 to 36: 8 When I convert 65535 to base 8 I get: 0000 0000 0017 7777 Enter another number [Y or N]: y Enter a number from 0 to 65,535: 65535 Enter the base to convert to from 2 to 36: 36 When I convert 65535 to base 36 I get: 0000 0000 0000 1EKF Enter another number [Y or N]: y Enter a number from 0 to 65,535: 4 Enter the base to convert to from 2 to 36: 5 When I convert 4 to base 5 I get: 0000 0000 0000 0004 Enter another number [Y or N]: y Enter a number from 0 to 65,535: 5 Enter the base to convert to from 2 to 36: 5 When I convert 5 to base 5 I get: 0000 0000 0000 0010 Enter another number [Y or N]: y Enter a number from 0 to 65,535: 35 Enter the base to convert to from 2 to 36: 36 When I convert 35 to base 36 I get: 0000 0000 0000 000Z Enter another number [Y or N]: y Enter a number from 0 to 65,535: 36 Enter the base to convert to from 2 to 36: 36 When I convert 36 to base 36 I get: 0000 0000 0000 0010 Enter another number [Y or N]: y Enter a number from 0 to 65,535: 375 Enter the base to convert to from 2 to 36: 7 When I convert 375 to base 7 I get: 0000 0000 0000 1044 Enter another number [Y or N]: y Enter a number from 0 to 65,535: 5433 Enter the base to convert to from 2 to 36: 11 When I convert 5433 to base 11 I get: 0000 0000 0000 409A Enter another number [Y or N]: y Enter a number from 0 to 65,535: 75664 ERROR, number must be between 0 and 65,535 Enter a number from 0 to 65,535: -3 ERROR, number must be between 0 and 65,535 Enter a number from 0 to 65,535: 17 Enter the base to convert to from 2 to 36: 16 When I convert 17 to base 16 I get: 0000 0000 0000 0011 Enter another number [Y or N]: n C:\Users\lyoung.Larry-AMD64V3\SkyDrive\Documents\Teach\COSC1436\LabExamples\2013 Spring>