본문 바로가기

PROGRAMMING LANGUAGE/C++

cin.getline string getline

 

#include <iostream>  
#include <string>  
using namespace std;

int main()
{
	const int arSize = 20;
	char buf[arSize];

	// cin.getline으로 입력받기
	cout << "Enter answer: ";
	cin.getline(buf, arSize);
	cout << "Answer is : " << buf << endl;  
	
	// string getline으로 입력받기
	string answer;
	cout << "Enter answer: ";
	getline(cin, answer);
	cout << "Your answer is: " << answer << endl;

	// cin으로 입력받기
	string a;
	cin >> a;
	cout << a << endl;
	return 0;
}

'PROGRAMMING LANGUAGE > C++' 카테고리의 다른 글

string compare함수 사용법  (0) 2021.12.07
string 문자열 붙여넣기하는 방법  (0) 2021.12.07
문제풀이 1  (0) 2021.12.07
템플릿 특수화  (0) 2021.12.03
템플릿 함수 사용하기  (0) 2021.12.02