반응형
Notice
Recent Posts
Recent Comments
Link
안 쓰던 블로그
C언어 알파벳 개수 세기 본문
반응형
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | #include <stdio.h> #include <string.h> int main(){ int a, i, j; char c[90]; int d[27] = { 0 }; char b[27] = { 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n', 'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z' }; gets(c); a = strlen(c); for (i = 0; i < 26; i++){ for (j = 0; j < a; j++){ if (c[j] == b[i]){ d[i] += 1; } } printf("%c:%d\n", b[i], d[i]); } return 0; } | cs |
a부터 z까지 하나씩 초기화 하지않는 방법이 있을텐데
반응형
'알고리즘 > 알고리즘 문제 풀이' 카테고리의 다른 글
C언어 구구단 (0) | 2016.04.01 |
---|---|
C언어 달팽이배열 (0) | 2016.04.01 |
C언어 정삼각형 별찍기 (0) | 2016.03.31 |
C언어 자릿수 계산 (0) | 2016.03.31 |
C언어 함수 이용한 사칙연산 계산기 (0) | 2016.03.29 |
Comments