| Thread Closed |
remedial C++ |
Share Thread | Thread Tools |
| Oct13-05, 08:12 AM | #1 |
|
|
remedial C++
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 |
| Oct13-05, 09:08 AM | #2 |
|
|
// 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 ........ |
| Oct13-05, 09:11 AM | #3 |
|
Recognitions:
|
Where are you inputting the values of F, C and K in main?
|
| Oct13-05, 09:30 AM | #4 |
|
|
remedial C++
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". |
| Oct13-05, 09:50 AM | #5 |
|
|
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. |
| Oct13-05, 10:48 AM | #6 |
|
|
double ftemp (double F, double C, double K, double temp, double scale) you dont 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. |
| Oct13-05, 11:12 AM | #7 |
|
Recognitions:
|
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) |
| Oct13-05, 06:03 PM | #8 |
|
|
|
| Oct14-05, 02:02 PM | #9 |
|
|
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. |
| Oct14-05, 02:22 PM | #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; question: Code:
cout<<"\nEnter scale C, F, or K: "; cin>>scale; plus your main doesnt return a int which is required by ansii |
| Thread Closed |
| Thread Tools | |
Similar Threads for: remedial C++
|
||||
| Thread | Forum | Replies | ||
| Remedial Physics | Science Textbook Discussion | 4 | ||
| remedial c++ | Engineering, Comp Sci, & Technology Homework | 6 | ||