Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
#include
using namespace std; int main() { int x = 5; int y = 0; if(y == 0) { cerr << "Division by zero: " << x << " / " << y << "\n"; } else { cout << (x / y); } return 0; }
Division by zero: 5 / 0