#include #include #include #include #include using namespace std; int main() { const string tennesseewhiskey[] { "Used to spend my nights out in a barroom", "Liquor was the only love I'd known", "But you rescued me from reachin' for the bottom", "And brought me back from bein' too far gone", "You're as smooth as Tennessee whiskey", "You're as sweet as strawberry wine", "You're as warm as a glass of brandy", "And honey, I stay stoned on your love all the time", "I've looked for love in all the same old places", "Found the bottom of a bottle's always dry", "But when you poured out your heart, I didn't waste it", "'Cause there's nothing like your love to get me high", "And you're as smooth as Tennessee whiskey", "You're as sweet as strawberry wine", "You're as warm as a glass of brandy", "And honey, I stay stoned on your love all the time", "You're as smooth as Tennessee whiskey", "You're as sweet as strawberry wine", "You're as warm as a glass of brandy", "And honey, I stay stoned on your love all the time", "You're as smooth as Tennessee whiskey", "Tennessee whiskey, Tennessee whiskey", "You're as smooth as Tennessee whiskey", "Tennessee whiskey, Tennessee whiskey" }; const string::size_type tw {size(tennesseewhiskey)}; for (int lyric {0}; lyric < tw; ++lyric) { cout << tennesseewhiskey[lyric] << "\n"; if (lyric % 4 == 3) { cout << "\n"; } this_thread::sleep_for(chrono::seconds(2)); } return EXIT_SUCCESS; }