carlosmucuri20pbd05m 10/10/2016 #include stdio.h int main(void){ double tempcel, tempfah; printf("digite uma temperatura em graus fahrenheit: "); scanf("%lf", & tempfah); tempcel = 5*(tempfah - 32)/9; printf("%.2lf em fahrenheit = %.2lf graus celsius", tempfah, tempcel); return(0); } fiz em c q ajude..
carlosmucuri20pbd05m
#include stdio.h int main(void){ double tempcel, tempfah; printf("digite uma temperatura em graus fahrenheit: "); scanf("%lf", & tempfah); tempcel = 5*(tempfah - 32)/9; printf("%.2lf em fahrenheit = %.2lf graus celsius", tempfah, tempcel); return(0); } fiz em c q ajude..