본문 바로가기

PROGRAMMING LANGUAGE/C++

string compare함수 사용법

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

int main()
{
	// a의 첫 번째 문자와 b의 첫 번째 문자 비교
	string a = "I am strinag one! ;)";
	string b = "string";
	cout << (int)'I';
	cout << (int)'s';
	if (a.compare(b) == 0)
	{
		cout << "I와 s는 같다" << endl;
	}
	else if (a.compare(b) < 0)
	{
		cout << "s가 크다" << endl;
	}
	else if (a.compare(b) > 0)
	{
		cout << "I가 크다" << endl;
	}

	return 0;
}

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

strtok_s  (0) 2021.12.07
c++ 형변환 함수  (0) 2021.12.07
string 문자열 붙여넣기하는 방법  (0) 2021.12.07
cin.getline string getline  (0) 2021.12.07
문제풀이 1  (0) 2021.12.07