#include int main (void) { int f; for (f = 0; f <= 300; f = f + 20) { printf ("%d\t%6.1f\n", f, (5.0 / 9.0) * (f - 32)); } }