1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <string.h> int main(void) { char s1[1001] = ""; char *ptr = NULL; int nWordCnt = 0; //워드 카운트 printf("문자열을 입력하세요(알파벳만, 1000자 이하) : "); scanf("%[^\n]s", s1); ptr = strtok(s1, " .,"); while (ptr != NULL) { if (strcmp(ptr, "the") == 0) { nWordCnt++; } ptr = strtok(NULL, " .,"); } printf("the 의 워드 수는 : %d 입니다\n", nWordCnt); return 0; } | cs |
c언어 코딩도장 "the" 단어 갯수
맞는 지 모르겠다 -.-;
c언어, 파이썬을 공부할 수 있는 곳!
'programming' 카테고리의 다른 글
nth-of-type, nth-child (0) | 2019.04.08 |
---|---|
구글 스프레드 시트 - 조건부 서식 - 행에 색깔 넣기 (0) | 2019.04.04 |
우분투에서 mysql 접속이 안 되었을 때 (0) | 2019.04.02 |
factorial (0) | 2019.03.30 |
C) 공백 문자 갯수 구하기 (0) | 2018.12.29 |