C언어 문자열 부분 질문입니다.

익명 사용자의 이미지

배운 문자열 함수라고는 strlen, strcpy, strcat, strcmp 뿐입니다.

검색해보니 strtok이 있던데 strtok을 사용하지 않고는 어떻게 문제를 풀지요? 도와주세요

File attachments: 
세벌의 이미지

raymundo의 이미지

문장에서 단어를 추출해내는 거라면야 그냥 한 글자씩 읽어나가면서 스페이스를 읽으면(좀 더 정교하게 하려면 탭, 마침표, 구두점 등도 추가) 그 직전까지 읽은 것을 한 단어로 간주하여 처리하는 정도로도 충분할 것 같은데요. 어차피 숙제라면 입력데이터가 아주 복잡하게 나오지는 않을 것 같고...

좋은 하루 되세요!

shint의 이미지


컴파일 하는 방식만 구현해 봤습니다. ㅇ_ㅇ;;

http://codepad.org/MTU6KVbr

#include <stdio.h>
 
int main()
{
 
    //https://tip.daum.net/question/69724836
    //모음 - a, e, i, o, u
    int i;
    int j;
    int moum_t = 0;
    int jaum_t = 0;
    char buf[10][10] = {"red", "head", "piano", "bar"};
    char tmp[10];
    for(i=0; i<10; i++)
    {
        printf("%s\t", &buf[i][0]);
        int len = strlen(&buf[i][0]);
        if(len == 0) break;
        int jaum = 0;
        int moum = 0;
        for(j=0; j<len; j++)
        {
            if( (buf[i][j] == 'a') || (buf[i][j] == 'e') || (buf[i][j] == 'i') || (buf[i][j] == 'o') || (buf[i][j] == 'u') )
            {
                printf("모음 : %c ", buf[i][j]);
                moum ++;
            }
            else
            {
                printf("자음 : %c ", buf[i][j]);
                jaum ++;
            }
        }
 
        if(moum_t == moum)
        {
//            printf("");
            memset(tmp, 0x00, 10);
            strcpy(tmp, &buf[i][0]);
            printf("[moum:%s]", tmp);
        }
        if(jaum_t == jaum)
        {
//            printf("");
            memset(tmp, 0x00, 10);
            strcpy(tmp, &buf[i][0]);
            printf("[jaum:%s]", tmp);
        }
 
        moum_t = moum;
        jaum_t = jaum;
        printf("[총모음:%d] [총자음:%d]\n", moum, jaum);
    }
    return 0;
}
 
#if 0
red	자음 : r 모음 : e 자음 : d [총모음:1] [총자음:2]
head	자음 : h 모음 : e 모음 : a 자음 : d [jaum:head][총모음:2] [총자음:2]
piano	자음 : p 모음 : i 모음 : a 자음 : n 모음 : o [jaum:piano][총모음:3] [총자음:2]
bar	자음 : b 모음 : a 자음 : r [jaum:bar][총모음:1] [총자음:2]
#endif

----------------------------------------------------------------------------
젊음'은 모든것을 가능하게 만든다.

매일 1억명이 사용하는 프로그램을 함께 만들어보고 싶습니다.
정규 근로 시간을 지키는. 야근 없는 회사와 거래합니다.

각 분야별. 좋은 책'이나 사이트' 블로그' 링크 소개 받습니다. shintx@naver.com

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.