📄 fahrcels.cpp
字号:
#include <iostream>using namespace std;// illustrates i/o of ints and doubles// illustrates arithmetic operationsint main(){ int ifahr; double dfahr; cout << "enter a Fahrenheit temperature "; cin >> ifahr; cout << ifahr << " = " << (ifahr - 32) * 5/9 << " Celsius" << endl; cout << "enter another temperature "; cin >> dfahr; cout << dfahr << " = " << (dfahr - 32.0) * 5/9 << " Celsius" << endl; return 0;}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -