cs161AWinter2024/getlinetest.cpp

12 lines
206 B
C++

#include <iostream>
using namespace std;
int main(){
string str;
cout << "Enter literally anything: " << endl;
getline(cin, str);
cout << "Here's what you entered: " << str << endl;
return 0;
}