#include #include using namespace std; // Function declaration for chorus void chorus(); int main() { cout << "You are my sunshine, my only sunshine\n" // Verse 1 << "You make me happy when skies are gray\n" << "You'll never know, dear, how much I love you\n" << "Please don't take my sunshine away.\n\n"; chorus(); // Call the chorus function cout << "The other night, dear, as I lay sleeping\n" // Verse 2 << "I dreamed I held you in my arms\n" << "When I awoke, dear, I was mistaken\n" << "So I hung my head and I cried.\n\n"; chorus(); cout << "I'll always love you and make you happy\n" // Verse 3 << "If you will only say the same\n" << "But if you leave me to love another\n" << "You'll regret it all someday.\n\n"; chorus(); return EXIT_SUCCESS; } // Function definition for chorus void chorus() { cout << "\tYou are my sunshine, my only sunshine\n" << "\tYou make me happy when skies are gray\n" << "\tYou'll never know, dear, how much I love you\n" << "\tPlease don't take my sunshine away.\n\n"; }