#include <iostream>
usingnamespace std;
class temps{
public:
double C°, F°;
double C2F (){
F° = (C° * 9/5 + 32);
}};
int main (){
temps objtemps;
cout << ("Please enter the value in Celsious: ");
cin>> objtemps.C°;
cout << ("The temp in F° is : ") << objtemps.C2F;
system ("pause");
}