- 博客(1)
- 收藏
- 关注
原创 C++实现华氏温度转为摄氏温度
学习C++,华氏温度转为摄氏温度 使用公式 celsius=(5/9)(fahrenheit-32) 代码展示## #include <iostream> using namespace std; int main() { double fahrenheit; cout << "Enter a degree in Fahrenheit: "; cin >> fahrenheit; double celsius = (5.0 / 9) * (fahrenhei
2021-09-29 15:47:27
4094
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅