code
#include <iostream>
#include <string>
using namespace std;
int main()
{
string str = "The Jin state was formed in southern Korea by the 3rd century BC";
char find = 'a';
//str.size()는 C언어에서의 strlen()과 같이 문자열의 길이를구한다.
int size = str.size();
int count = 0;
for (int i = 0; i < size; i++)
if (str[i] == find)
count++;
cout << "문장의 a 개수는 " << count << "개 입니다." << endl;
return 0;
}