#include #include #include using namespace std; int main() { string actions[] { "", "Green grow the rushes, O!", "Two, two, the lily-white lilies are bloomin.", "Three, three, the rivals are fightin.", "Four, four, the distant hills are callin.", "Five, five, the shining sun is risin.", "Six, six, the wind doth blow.", "Seven, seven, the new moon rises.", "Eight, eight, the stars twinkle bright." }; int verse {8}; for (int i {1}; i <= verse; ++i) { cout << actions[1] << "\n"; for (int j {2}; j <= i; ++j) { cout << actions[j] << "\n"; } cout << "\n"; } return EXIT_SUCCESS; }