9 lines
152 B
C
9 lines
152 B
C
|
#include <stdio.h>
|
||
|
int main(){
|
||
|
int fahr;
|
||
|
for (fahr=300; fahr>=0; fahr-=20){
|
||
|
printf("%3d %6.1f\n", fahr, (5.0/9.0)*(fahr-32));
|
||
|
}
|
||
|
return 0;
|
||
|
}
|