#include <iostream> #include <conio.h> #include <string> using namespace std; void main(){ string s; getline(cin, s); cout << s << endl; getch();//一時停止 } //cin >> s;で"hello world"と入れてもちぎれる(cout << s;の結果が"hello")
#include <iostream> #include <conio.h> #include <string> using namespace std; void main(){ string s; getline(cin, s); cout << s << endl; getch();//一時停止 } //cin >> s;で"hello world"と入れてもちぎれる(cout << s;の結果が"hello")