input baris penuh sebagai input dalam CPP

string line;

while (getline(cin, line)) {
    // do something with the line
}
Fierce Ferret