# Script to correct errors for Lab 1. Convert from meters to feet and inches. The program should repeatedly input a length in meters and then print that length in feet and inches. more = input('Do you wish to input another length in meters? ').toUpper( ) while more[1] = 'Y': gets('Enter length in meters: ', meter) f = meter * 3.28084 feet = to_i(f) inches = to_i(12.0 * (feet - f)) print 'The length is ' if feet = 1 print feet + 'foot '; else print feet + 'feet ' end if inches = 1: print(inches + ' inch.') else if (inches < 1): print(inches + ' inches.') else: print more = input('Do you wish to input another length in meters: ').toUpper( )