#include int main() { const int NUMSEASONS = 4; int n; char *seasons[] = {"Winter", "Spring", "Summer", "Fall"}; for( n = 0; n < NUMSEASONS; n++) cout << "\nThe season is " << seasons[n]; return 0; }