14 lines
155 B
C
14 lines
155 B
C
#include <stdio.h>
|
|
|
|
int main(){
|
|
|
|
int celsius,fahr;
|
|
|
|
fahr=100;
|
|
|
|
celsius=5*(fahr-32)/9;
|
|
|
|
printf("fahr=%d,celsius=%d\n",fahr,celsius);
|
|
|
|
}
|