-1
using namespace std;
int main()
{

return 0;
}
double C2F()
{
    f = value * 9 / 5 + 32;
    return f;
}

double K2F()
{
    f = (value - 273.15) * 1.8 + 32.0;
    return f;
}

double N2F()
{
    f = value * 60 / 11 + 32;
    return f;
}

我无法调用这些函数来计算温度转换,而不是从案例中计算它。添加这些功能后,程序甚至无法编译。“错误:应为“;””

4

3 回答 3

3

您不能在另一个函数中声明或定义函数。将您的定义移到int main(){ ... }.

于 2013-10-07T04:41:22.940 回答
1

首先,您不能在main()函数中声明另一个函数。

其次,您的所有函数都有一个返回类型,但令人惊讶的是,您调用它们是因为它们是无效的。使函数 void 而不是返回类型。比如……

void C2F()
{
    f = value * 9 / 5 + 32;
}

接着

case 'C':
        C2F();
        cout << value << "C is " << f << " in Farenheit" << endl;
        break;

或者。您可以在双精度类型变量中接收返回值并打印该值。

case 'C':
    cout << value << "C is " << C2F() << " in Farenheit" << endl;
    break;
于 2013-10-07T04:46:28.230 回答
1

这就是你想要的。

  1. 在 main 方法之外声明函数。
  2. 在 main 方法之前声明函数或使用前向声明
  3. 将“值”作为参数传递给每个函数。
  4. 删除不必要的变量声明。
  5. 对用户输入使用一些验证。
  6. 使用有意义的变量名。

包括

using namespace std;


double C2F(double f)
{       
    return f * 9 / 5 + 32;    
}

double K2F(double f)
{   
    return ((f - 273.15) * 1.8 + 32.0);   
}

double N2F(double f)
{           
    return (f * 60 / 11 + 32);

}

int main()
{
    char function;
    double value;
    cout << "This temperature Conversion program converts other temperatures to farenheit" << endl;
    cout << "The temperature types are" << endl;
    cout << "" << endl;
    cout << "C - Celcius" << endl;
    cout << "K - Kelvin" << endl;
    cout << "N - Newton" << endl;
    cout << "X - eXit" << endl;
    cout << "" << endl;
    cout << "To use the converter you must input a value and one of the temperature types." <<         endl;
    cout << "For example 32 C converts 32 degrees from Celsius to Fahrenheit" << endl;
    cin >> value >> function;

    function = toupper(function);

    while (function != 'X')
    {
        switch (function)
        {
        case 'C':       
            cout << value << "C is " << C2F(value) << " in Farenheit" << endl;
            break;
        case 'K':       
            cout << value << "K is " << K2F(value) << " in Farenheit" << endl;
            break;
        case 'N':
            cout << value << "N is " << N2F(value) << " in Farenheit" << endl;
            break;
        default:
            cout << "Correct choices are C, K, N, X" << endl;
        }
        cout << "Please enter a value and it's type to be converted" << endl;
        cin >> value >> function;
        function = toupper(function);
    }
    return 0;
}
于 2013-10-07T04:57:47.267 回答