The `cin` statement in C++ is a powerful tool for input handling, especially when you're dealing with simple and straightforward data. You can use `cin` to read data directly from the standard input, such as a keyboard. This is particularly useful when you want to read input from the user during a program’s execution.
The usage is straightforward:
- Simply declare your variable (like a `string` or `int`).
- Use `cin >> variable_name;`.
This command will automatically begin expecting user input as soon as the program reaches this point in the code. For example, when reading a single word, we'll use:
The `cin` statement stops reading as soon as it encounters a space, newline, or any other whitespace character. This means it's ideal for single-word inputs but not for phrases or sentences with spaces.