#include #include // For Terminal users, this is not needed, // but VS users might need it to compile. using namespace std; string str0; // This assignment was worth 3 points. int main() { cout << "Enter a word: "; cin >> str0; cout << str0.length() << " characters\n"; return 0; }