Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- cin.ignore() между двумя входами: потому,
- что вам нужно промывать символ новой строки из буфера между ними.
- */
- #include <iostream>
- using namespace std;
- int main() {
- string word, line;
- cout << "enter a word" << endl;
- cin >> word;
- cout << "enter a line" << endl;
- cin.ignore(); // нужно промывать символ новой строки из буфера
- getline(cin,line);
- cout << "your word is " << word << endl;
- cout << "your line is " << line << endl;
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement