Fall, 2021
C = input('enter the temperature in Celsius: '); F = (9/5)*C + 32; fprintf('%.1f degrees Celsius is %.1f degrees Fahrenheit\n', C, F);