Conversor de Temperaturas
Publicado por White Hawk (última atualização em 07/07/2011)
[ Hits: 24.890 ]
Download conversor_temperatura.c
Este é um script em C que realiza a conversão de temperaturas entre as escalas Celsius, Fahrenheits e Kelvin.
#include <stdio.h> int opcao; float tc, tf, tk; void Celsius_Fahrenheits() { printf("\nDigite a temperatura em Celsius.: "); scanf("%f", &tc); tf = ((9*tc + 160)/5); printf("\nA temperatura em Fahrenheits = %f\n", tf); } void Celsius_Kelvin() { printf("\nDigite a temperatura em Celsius.: "); scanf("%f", &tc); tk = (tc + 273); printf("\nA temperatura em Kelvin = %f\n", tk); } void Fahrenheits_Celsius() { printf("\nDigite a temperatura em Fahrenheits.: "); scanf("%f", &tf); tc = ((5*(tf - 32))/9); printf("\nA temperatura em Celsius = %f\n", tc); } void Fahrenheits_Kelvin() { printf("\nDigite a temperatura em Fahrenheits.: "); scanf("%f", &tf); tk = ((5*tf + 2297)/9); printf("\nA temperatura em Kelvin = %f\n", tk); } void Kelvin_Celsius() { printf("\nDigite a temperatura em Kelvin.: "); scanf("%f", &tk); tc = (tk - 273); printf("\nA temperatura em Celsius = %f\n", tc); } void Kelvin_Fahrenheits() { printf("\nDigite a temperatura em Kelvin.: "); scanf("%f", &tk); tf = ((9*tk - 2297)/5); printf("\nA temperatura em Fahrenheits = %f\n", tf); } main() { printf("==========CELSIUS <-> FAHRENHEITS==========\n"); printf("\n1-Celsius -> Fahrenheits\n2-Celsius -> Kelvin\n3-Fahrenheits -> Celsius\n4-Fahrenheits -> Kelvin\n5-Kelvin -> Celsius\n6-Kelvin -> Fahrenheits\n7-Sair\n\nOpcao.: "); scanf("%d", &opcao); switch (opcao) { case 1: Celsius_Fahrenheits(); break; case 2: Celsius_Kelvin(); break; case 3: Fahrenheits_Celsius(); break; case 4: Fahrenheits_Kelvin(); break; case 5: Kelvin_Celsius(); break; case 6: Kelvin_Fahrenheits(); break; case 7: printf("\nFinalizando o programa...\n"); break; default: printf("\nErro! Opcao inexistente.\n"); break; } return(0); }
Como fazer raízes a partir de 2 e 3 no c.
Calcular taxa de juros com constante em C
Compartilhando a tela do Computador no Celular via Deskreen
Como Configurar um Túnel SSH Reverso para Acessar Sua Máquina Local a Partir de uma Máquina Remota
Configuração para desligamento automatizado de Computadores em um Ambiente Comercial
Efeito "livro" em arquivos PDF
Como resolver o erro no CUPS: Unable to get list of printer drivers
Flatpak: remover runtimes não usados e pacotes
Mudar o gerenciador de login (GDM para SDDM e vice-versa) - parte 2
Como atualizar o Debian 8 para o 10 (10)
Dica sobre iptables ACCEPT e DROP (6)
NGNIX - Aplicar SNAT para evitar roteamento assimetrico (29)
[Python] Automação de scan de vulnerabilidades
[Python] Script para analise de superficie de ataque
[Shell Script] Novo script para redimensionar, rotacionar, converter e espelhar arquivos de imagem
[Shell Script] Iniciador de DOOM (DSDA-DOOM, Doom Retro ou Woof!)
[Shell Script] Script para adicionar bordas às imagens de uma pasta