#include <stdio.h>

int main() {

    int F = 100;
    double C;

    C = (5.0 / 9.0) * (F - 32);

    printf("화씨 : %d\n", F);
    printf("섭씨 : %.6f\n", C);

    return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: