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 x = 15; int y = 25; if (x > 10) { cout << "x is greater than 10\n"; // Nested if if (y > 20) { cout << "y is also greater than 20\n"; } } return 0; }
x is greater than 10
y is also greater than 20