#include #include #include using namespace std; int main() { string lyrics[] { "", // 0 "There's naught but care on every hand", // 1 "In every hour that passes oh", // 2 "What signifies the life of man", // 3 "If it were not for the lassies oh", // 4 "Green grow the rushes oh", // 5 "Green grow the rushes oh", // 6 "The sweetest hours that ever I spent", // 7 "Are spent among the lassies oh", // 8 "The worldly race may riches chase", // 9 "And riches still may fly them oh", // 10 "And though at last they catch them fast", // 11 "Their hearts can ne'er enjoy them oh", // 12 "Green grow the rushes oh", // 13 "The sweetest hours that ever I spent", // 14 "Are spent among the lassies oh", // 15 "Give me a cannie hour at e'en", // 16 "My arms around my dearie oh", // 17 "The wisest man the world e'er saw", // 18 "He dearly loved the lassies oh", // 19 "Green grow the rushes oh", // 20 "The sweetest hours that ever I spent", // 21 "Are spent among the lassies oh", // 22 "Old nature swears the lovely dears", // 23 "Her noblest work she classes oh", // 24 "Her apprentice hand she tried on man", // 25 "Then she made the lassies oh", // 26 "Green grow the rushes oh", // 27 "Green grow the rushes oh", // 28 "The sweetest hours that ever I spent", // 29 "Are spent among the lassies oh", // 30 "Green grow the rushes" // 31 }; int nverses {31}; for (int verse {1}; verse <= nverses; ++verse) { cout << "On verse " << verse << " of the song:\n"; for (int line {verse}; line >= 1; --line) { cout << lyrics[line] << "\n"; } cout << "\n"; } return EXIT_SUCCESS; }