#include<stdio.h>
int main()
{
double f,c;
for(f = 0;f <= 300;f+=20)
{
c = (f - 32.0)/1.8;
printf("%4.0f%10.1f\n",f,c);
}
}
#include<stdio.h>
int main()
{
double f,c;
for(f = 0;f <= 300;f+=20)
{
c = (f - 32.0)/1.8;
printf("%4.0f%10.1f\n",f,c);
}
}