% ex52.m fprintf('Fahrenht Celsius\n'); for F=0:5:100 fprintf('%8d %8.1f\n',F,FtoC(F)); end