C/C++ How Do You Handle Incorrect Temperature Scale Inputs in C++?

  • Thread starter Thread starter frogdogbb
  • Start date Start date
  • Tags Tags
    Temperature
AI Thread Summary
The discussion revolves around challenges faced in writing a C++ program for temperature conversion between Celsius (C), Fahrenheit (F), and Kelvin (K). The original code attempts to implement this functionality using a function but encounters issues, including a compiler error stating that the function does not require three arguments. Suggestions are made to pass temperature variables by reference instead of by value to facilitate proper calculations. The infinite loop issue is highlighted, as the scale variable is not altered within the loop. A revised version of the code is presented, which simplifies the structure by using separate functions for each conversion type. The new implementation prompts the user for temperature and scale, then performs the conversions accordingly. Concerns are raised about user input validation and the need for the main function to return an integer, adhering to ANSI standards. Overall, the conversation emphasizes debugging, code structure, and best practices in C++ programming for temperature conversion.
frogdogbb
Messages
45
Reaction score
0
I know I am not a moron but this C++ is killing me, I have to write a program using functions to convert temp between c, f, k I am hung up

// Mod4project2tempconvert.cpp : Defines the entry point for the console application.
#include <iostream>
using namespace std;

double ftemp (double F, double C, double K, double temp, double scale)

{
while (scale != 0)
{
if (scale==C);
F=temp*9/5+32;
K=temp+273.15;

if (scale==F);
C=(temp-32)*5/9;
K=(temp-32)*5/9+273.15;

if (scale==K);
F=(temp-273.15)*9/5+32;
C=temp-273.15;
}
}


int main()
{
double F, C, K, temp, scale;
cout<<"Enter the scale you want to convert from C, F, or K- 0 to quit: ";
cin >> scale;

cout<<"\nEnter temperature";
cin >> temp;
cout<<"\nCongratulations you entered "
<<scale<<"The following results are your converted temperatures "
<<ftemp(C, F, K)<<endl;

return 0;
}

Any help?
Thanks
 
Technology news on Phys.org
maybe this is closer

// Mod4project2tempconvert.cpp : Defines the entry point for the console application.
#include <iostream>
using namespace std;

double ftemp (double F, double C, double K, double temp, double scale)

{
while (scale != 0)
{
if (scale==C)
{
F=temp*9/5+32;
K=temp+273.15;
}

if (scale==F)
{
C=(temp-32)*5/9;
K=(temp-32)*5/9+273.15;
}

if (scale==K)
{
F=(temp-273.15)*9/5+32;
C=temp-273.15;
}
}
}


int main()
{
double F, C, K, temp, scale;
cout<<"Enter the scale you want to convert from C, F, or K- 0 to quit: ";
cin >> scale;

cout<<"\nEnter temperature";
cin >> temp;
cout<<"\nCongratulations you entered "
<<scale<<"The following results are your converted temperatures "
<<ftemp(F, C, K)<<endl;

return 0;
}

I only get one complier error:ftemp does not require 3 arguments
...
 
Where are you inputting the values of F, C and K in main?
 
Presumably because he wants the function to just do the calculation.

He posted this also in "homework help" where I suggested that he pass the F,K,C variables by "reference" rather than by "value".
 
exactly what is the function suppose to do...
waht is the return "double"variable? and the compiler error you get should be easily solved...look at your function definition and look at your function call

as for your function itself, it will either enter a infinite loop because you haven't altered the scale value or while (scale != 0){...} or you won't use the function itself because scale==0.
 
HallsofIvy said:
...I suggested that he pass the F,K,C variables by "reference" rather than by "value".

this is the answer your looking fordouble ftemp (double F, double C, double K, double temp, double scale)
you don't return a double;
your function prototype may be something like:
void ftemp (double* F, double* C, double* K, double temp, double scale)

and pass the variables like:
ftemp(&F, &C, &K, temp, scale)but you will still need to output to screen the values.
 
Last edited:
Even if you pass the variables by reference how do you expect to do this type of comparison without having an intial value:

if (scale==C)
 
dduardo said:
Even if you pass the variables by reference how do you expect to do this type of comparison without having an intial value:

if (scale==C)

i would have rewritten the code and give the correct answer but this is "homework help" and therefore i don't want to give the full answer.
 
Well...

I had it figured out with a more consise program but I accidently earsed it. So I had to redo it it works and should be more than enough to get me a 100% even though it is not as pretty as I would like.

// mod4project2.cpp : Defines the entry point for the console application.
#include <iostream>
using namespace std;

double kscale (double);
double fscale (double);
double cscale (double);
double kscale1 (double);
double fscale1 (double);
double cscale1 (double);

int main()
{
double k, f, c, temp;
char scale;
cout<<"Enter temperature: ";
cin>>temp;
cout<<"\nEnter scale C, F, or K: ";
cin>>scale;

if (scale=='k' || scale=='K')
{
k= temp;
f=kscale (temp);
c= kscale1 (temp);
cout<<"\n K= "<<k<<"\n C= "<<c<<"\n F= "<<f<<endl;
}

else if (scale=='f' || scale=='F')
{
f= temp;
k= fscale (temp);
c= fscale1 (temp);
cout<<"\n K= "<<k<<"\n C= "<<c<<"\n F= "<<f<<endl;
}
else if (scale=='c' || scale=='C')
{
c= temp;
k= cscale(temp);
f= cscale1(temp);
cout<<"\n K= "<<k<<"\n C= "<<c<<"\n F= "<<f<<endl;
}
}

double kscale (double temp)
{
double f;
f=((temp-273.15)*(9/5))+32;
return f;
}
double kscale1 (double temp)
{
double c;
c=temp-273.15;
return c;
}

double fscale (double temp)
{
double k;
k=((temp-32)*(5/9))+273.15;
return k;
}

double fscale1 (double temp)
{
double c;
c=(temp-32)*(5/9);
return c;
}

double cscale (double temp)
{
double k;
k=temp+273.15;
return k;
}
double cscale1 (double temp)
{
double f;
f=(temp*9/5)+32;
return f;
}
Thanks for the suggestions.
 
  • #10
this code looks ugly yet it may do as you wish.
does the code need to have
Code:
cout<<"\n K= "<<k<<"\n C= "<<c<<"\n F= "<<f<<endl;
written three times?

question:
Code:
cout<<"\nEnter scale C, F, or K: ";
cin>>scale;
what happens if a user doesn't enter C,F or K?

plus your main doesn't return a int which is required by ansii
 
Last edited:

Similar threads

Replies
5
Views
3K
Replies
17
Views
2K
Replies
2
Views
3K
Replies
1
Views
3K
Replies
2
Views
1K
Back
Top