Using Eclipse Please make sure it works before you post beca
Using Eclipse
Please make sure it works before you post because I\'ve gotten incorrect answers twice already
Implement the temperature class depicted by the following UML representation. Your main program should look similar to this:Solution
#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
float cel, fah,kel;
cout<<”Enter the Temperature in FAH”<<endl;
cin>>fah;
CEL= (fah-32.0)/1.800;
cout<<”Temperature in cel is “<<cel;
kel=((fah-32.0)/1.800)+272.15;
cout<<”Temperature in kel is “<<kel;
getch();
}
