Faça uma função em C, que receba por parâmetro uma temperatura em graus Fahrenheith e a retorne convertida em graus Celsius. A fórmula de conversão é: C=(F-32)*(5/9), sendo F a temperatura em Fahrenheith e C a temperatura em Celsius.
Soluções para a tarefa
Respondido por
1
int main(){
float grausF,grausC;
printf("Digite a temperatura em fahrenheith: \n");
scanf("%f",&grausF);
grausC = (grausF-32)*(5/9);/* mas to achando essa fórmula de conversão meio estranha*/
}
float grausF,grausC;
printf("Digite a temperatura em fahrenheith: \n");
scanf("%f",&grausF);
grausC = (grausF-32)*(5/9);/* mas to achando essa fórmula de conversão meio estranha*/
}
Perguntas interessantes
Geografia,
8 meses atrás
Português,
8 meses atrás
Português,
8 meses atrás
Matemática,
1 ano atrás
Informática,
1 ano atrás
Matemática,
1 ano atrás