Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
#include
using namespace std; int main() { int temperature = 30; // temperature in Celsius if (temperature < 0) { cout << "It's freezing!\n"; } else if (temperature < 20) { cout << "It's cool.\n"; } else { cout << "It's warm.\n"; } return 0; }
It's warm.