#include <iostream>
using
namespace
std;
int main(void)
{
cout << "Transformacao de temperaturas.\n";
cout << "1 - Celsius para Fahrenheit\n";
cout << "2 - Fahrenheit para Celsius\n\n";
cout << "Escolha uma opcao: ";
int opcao;
cin >> opcao;
double tc,tf;
switch (opcao)
{
case 1:
cout << "Digite a temperatura em Celsius: ";
cin >>tc ;
cout << tc << " C corresponde a " << (9*c + 160)/5.0 << “
F.\n";
break;
case 2:
cout << "Digite a temperatura em Fahrenheit: ";
cin >> tf;
cout << tf << " F corresponde a " << (5*tf – 160)/9.0 << " C
.\n";
break;
default:
cout << "Opcao invalida!!!\n";
break;
}
system(“pause>null”)
return(0);
}
Nenhum comentário:
Postar um comentário