#include using namespace std; int length; // This assignment is worth 3 points // -2 if breaks were used int main() { cout << "Select sentence length (1, 2, 3, 4, 5): "; cin >> length; switch(length) { case 5: cout << "Eventually, "; case 4: cout << "I made you "; case 3: cout << "believe "; case 2: cout << "you are "; case 1: cout << "enough\n"; } return 0; }