티스토리 뷰
반응형
#include <stdio.h>
#include <ctype.h>
#include <string.h>
int main() {
int length = 0, i, alpha = 0, digit = 0;
char str[100];
printf("문자 입력: ");
gets(str);
length = strlen(str);
for (i = 0; i < length; i++) {
if (isalpha(str[i])) {
alpha++;
}
else if (isdigit(str[i])) {
digit++;
}
}
printf("문자열에 알파벳 %d개 숫자 %d개 있습니다.\n", alpha, digit);
}
댓글
티스토리 방명록
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
Blog is powered by
Tistory / Designed by
Tistory
Contact: j0n9m1n1@gmail.com
Contact: j0n9m1n1@gmail.com