c_cpp 将华氏温度转换为摄氏温度或Vise-Versa

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 将华氏温度转换为摄氏温度或Vise-Versa相关的知识,希望对你有一定的参考价值。

#include <iostream>
#include <cctype>

int main()
{
    int temp;
    char unit;

    std::cout << "Please enter a temperature: ";
    std::cin >> temp;
    std::cout << "To convert to Celsius press 'c' or Fahrenheit press 'f': ";
    std::cin >> unit;

    if ( isupper(unit) )
    {
        unit = tolower(unit);
    }

    if (unit == 'c')
    {
        temp = (temp - 32)  / 9.0 * 5.0;
        std::cout << temp << " degrees Celsius\n";
    }
    else if (unit == 'f')
    {
        temp = 9.0 / 5.0 * temp + 32;
        std::cout << temp << " degrees Fahrenheit\n";
    }
    else
    {
        std::cout << "Sorry that unit of measure isn't recognized.\n";
    }

    return 0;
}

以上是关于c_cpp 将华氏温度转换为摄氏温度或Vise-Versa的主要内容,如果未能解决你的问题,请参考以下文章

如何将字符串转换为浮点数? (温度转换器)

javascript 将摄氏温度转换为华氏温度

ValueError:无法将字符串转换为浮点数:'"r_version"' - 将温度转换为华氏温度时

如何用 python编写华氏摄氏度的相互转换?

java 华氏温度转换为摄氏温度

7-28 摄氏温度转换华氏温度 (5 分)