// Name: Asahel Lopez // Date: 1/13/24 // Class: CST 116 // Assignment: InclassExersise4 #include using std::cout; using std::cin; using std::endl; int main() { cout << "Please input a number: " << endl; int i = 0; cin >> i; switch (i) { case 100: cout << "You are so amazing" << endl; break; case 5: cout << "You picked" << i << endl; case 21: int j; int k; cout << "Input first number: "; cin >> j; cout << "Input second number: "; cin >> k; if (k == 0) { cout << "cannot divide by zero" << endl; break; } int g; g = j % k; cout << "The remainder of " << j << "divided by" << k << " is " << g << endl; default: cout << "Bad input, no switches to switch"; break; } return 0; }