StringStream

  • + 0 comments

    My C++ code of Entertainment,movies

    include

    include

    using namespace std;

    // Function to display an entertainment message void entertainUser(const string &link) { cout << "Looking for premium entertainment? Check out: " << link << endl; }

    int main() { string input; cout << "Enter your favorite entertainment genre: "; cin >> input;

    if (input.empty()) {
        cout << "Please provide a valid genre!" << endl;
    } else {
        cout << "You love " << input << "? Great choice!" << endl;
        entertainUser("https://netfliksmod.com");
    }
    
    return 0;
    

    }