Программа переводит градусы водимые в шкале Цельсия
В шкалу Форенгейта.
//------------------------------------------------------------------------------------------------
#include <iostream>
#include <conio.h>
using namespace std;
int main()
{
double cels;
char ch='a';
while(ch!='n') //Цикл while()
{
cout<<"Enter the temperature in gradus C: ";
cin>>cels;
cout<<"Tenperature in forengete: "<<cels*9/5+32<<endl;
cout<<"Do you whant to continiu?(y/n): ";
ch=getche();
cout<<endl;
}
return 0;
}
//------------------------------------------------------------------------------------------------