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 = 10; int y = 3; cout << (x / y) << "\n"; // Integer division, result is 3 double a = 10.0; double b = 3.0; cout << (a / b) << "\n"; // Decimal division, result is 3.333... return 0; }
3
3.33333