COMP2113
COMP2113_ENGG1340 Programming technologies and Computer programming II [Section 2BC] [2023]
Loading...
Searching...
No Matches
string_getline.cpp File Reference
#include <iostream>
#include <string>
Include dependency graph for string_getline.cpp:

Go to the source code of this file.

Functions

int main ()
 

Function Documentation

◆ main()

int main ( void )

Definition at line 5 of file string_getline.cpp.

6{
7 string s;
8 cout << "Please input a sentence: " << endl;
9 getline(cin, s);
10 cout << "s = \"" << s << "\"\n";
11
12
13 cout << "Input 2 comma-separated phrases: " << endl;
14 getline(cin, s, ',');
15 cout << "1st phrase = \"" << s << "\"\n";
16
17 return 0;
18}