//Faça um Programa que peça a temperatura em graus Farenheit, transforme e mostre a temperatura em graus Celsius.
#include <stdio.h>
#include <stdlib.h>
main() {
    float tf,tc;
    
    printf("Informe a temperatura em graus Farenheit:");
    scanf("%f",&tf);
    
    tc=5*((tf-32)/9);
    
    printf("\nEssa temperatura em graus Celsius equivale a %.2f.",tc);
}

Embed on website

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