#include <stdio.h>
void main()
{
int fahr,celsius;
int lower,upper,step;
int lower=0;
int upper=300;
int step=20;
fahr=lower;
printf("F C\n\n");
while(fahr<=upper){
celsius=5*(fahr-32)/9;
printf("%d\t%d\n",celsius,fahr);
fahr=fahr+step;
getchar();
}
}
void main()
{
int fahr,celsius;
int lower,upper,step;
int lower=0;
int upper=300;
int step=20;
fahr=lower;
printf("F C\n\n");
while(fahr<=upper){
celsius=5*(fahr-32)/9;
printf("%d\t%d\n",celsius,fahr);
fahr=fahr+step;
getchar();
}
}