#include #include using namespace std; int main() { cout << 10.0 / 0.0 << "\n"; cout << "The above quotient was infinity.\n\n"; cout << 10 / 0 << "\n"; //This is the last statement that is executed. cout << "Never gets to here.\n"; return EXIT_SUCCESS; //Never gets to here either. }