P109.3. (1) 입력 문자열 에 각각 다른 문자 가 나타 나 는 빈 도 를 계산 하고 결 과 를 파일 에 저장 하 는 알고리즘 을 작성 합 니 다 (문자열 의 합 법 적 인 문 자 는 A ~ Z 라 는 26 글자 와 0 ~ 9 이라는 10 개의 숫자)

#include 
#include 
using namespace std;

int main()
{
	int times[36];
	char ch;
	int num;

	for(int i = 0; i < 36; i++)
	{
		times[i] = 0;
	}
	cout<>ch;
	while(ch != '#')//'#'          
	{
		if(ch >= '0' && ch <= '9')
		{
			num = ch - '0';//times[0]~times[9]    '0'~‘9’   
			times[num]++;
		}
		else if(ch >= 'A' && ch <= 'Z')
		{
			num = ch - 'A' + 10;//times[10]~times[35]    A Z   
			times[num]++;
		}
		else
		{
			cout<>ch;
	}
	for(int j = 0; j < 36; j++)//           
	{
		cout<

좋은 웹페이지 즐겨찾기