从摄氏度到华氏度的错误转换
在 C 中,使用浮点运算从摄氏度到华氏度的转换需要特别注意。考虑以下代码:
<code class="cpp">#include <iostream> using namespace std; int main() { float celsius; float fahrenheit; cout << "Enter Celsius temperature: "; cin >> celsius; fahrenheit = (5/9) * (celsius + 32); cout << "Fahrenheit = " << fahrenheit << endl; return 0; }</code>
为什么该程序对于任何摄氏度输入都会输出 0?
问题在于 (5/9) 的整数除法。默认情况下,C 执行整数除法,在本例中结果为 0。为了解决这个问题,我们必须将其中一个操作数转换为浮点类型以强制进行浮点除法。更正后的代码如下:
<code class="cpp">#include <iostream> using namespace std; int main() { float celsius; float fahrenheit; cout << "Enter Celsius temperature: "; cin >> celsius; fahrenheit = (5.0/9) * (celsius + 32); cout << "Fahrenheit = " << fahrenheit << endl; return 0; }</code>
以上是为什么我的摄氏度到华氏度转换总是输出 0?的详细内容。更多信息请关注PHP中文网其他相关文章!