Crie um algoritmo que converta um valor de temperatura em °C para K=TC+273
Soluções para a tarefa
Respondido por
1
#include<stdio.h>
int main() {
int c, k; //seria melhor usar float devido aos graus kelvin porem usarei int
printf("Digite a temperatura em Celsius: ");
scanf("%d",&c);
printf("\n");
k = c + 273;
printf("A temperatura em Kelvin é: %d\n",k);
return 0;
}
int main() {
int c, k; //seria melhor usar float devido aos graus kelvin porem usarei int
printf("Digite a temperatura em Celsius: ");
scanf("%d",&c);
printf("\n");
k = c + 273;
printf("A temperatura em Kelvin é: %d\n",k);
return 0;
}
96172542:
Obrigado
Perguntas interessantes
Biologia,
9 meses atrás
Português,
9 meses atrás
Matemática,
1 ano atrás
Sociologia,
1 ano atrás
Física,
1 ano atrás
Português,
1 ano atrás