//Using Constants // Joseph Oriko (mailoriko@yahoo.com) //July, 6th, 2004. #include int main () { const int December = 0; const int January = 1; const int February = 2; const int March = 3; const int April = 4; const int May = 5; const int June = 6; const int July = 7; int choice; cout << "Enter a Month (from December to July using #s 1 to 7) to get a school break:"; cin >> choice; if (choice == July ) cout <<"\n You are already off from school!\n"; else cout << "\nO.k, I'll put in a vacation for ya!\n"; return 0; } //Output- //"Enter a Month (from December to July using #s 1 to 7) to get a school break:" //If you enter any # from 0 to 6 it would say: //"O.k, I'll put in a vacation for ya!" //But if you enter # 7 it would say: //"You are already off from school!"