#9712: 求救...WA(line6)不知錯哪裡


pinman (Joyce)

學校 : 國立中央大學
編號 : 48453
來源 : [140.115.155.237]
最後登入時間 :
2015-03-17 18:02:27
a011. 00494 - Kindergarten Counting Game -- UVa494 | From: [140.115.155.237] | 發表日期 : 2015-03-10 23:45

下面是我的code,
提交後出現WA(line6),
跪求大大們當我看看哪裡錯了><
 
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#include <stdbool.h>

int main()
{
    bool Is_empty;
    char one_word;
    int word_count = 0, count = 0;
    while((scanf("%c", &one_word))) {
        if(count == 1) {
            word_count++;
        }
        if((toascii(one_word) > 64 && toascii(one_word) < 90) || (toascii(one_word) > 96 && toascii(one_word) < 122)) {
            count++;
            Is_empty = false;
        }
        else if(one_word == ' ') {
            count = 0;
            Is_empty = false;
        }
        else if(count == 1) {
            count++;
        }
        if(Is_empty == true)
            break;
        else if(one_word == '\n') {
            printf("%d\n", word_count);
            if(one_word != ' ' && word_count < 1) {
                Is_empty = true;
            }
            count = 0;
            word_count = 0;
        }

    }
    return 0;
}

 
ZeroJudge Forum