洛谷題解P 5015【タイトル統計】NOIP 2018普及グループT 1

1134 ワード

scanf("%c", &ch) != EOFを使う人はいませんか?scanfEOFは悲しくなります.
構想:文字を1つずつ読み込んで、EOF中止に遭遇して、読み込んだ文字ごとに判断します.
試験場コードを添付します.
#include 
#define file_in(f) freopen(f".in", "r", stdin)
#define file_out(f) freopen(f".out", "w", stdout)
#define file(f) file_in(f), file_out(f)

char tmp;

bool Daxie(char c)
{
    return (c <= 'Z') && (c >= 'A');
}
bool Xiaoxie(char c)
{
    return (c <= 'z') && (c >= 'a');
}
bool Number(char c)
{
    return (c <= '9') && (c >= '0');
}
bool isOK(char ch)
{
    return Daxie(ch) || Xiaoxie(ch) || Number(ch);
}

int main()
{
//  file("title");
    int ans = 0;
    while (scanf("%c", &tmp) != EOF) {
        if (isOK(tmp)) ans++;
    }
    printf("%d", ans);
    return 0;
}

To:よくわからない
scanfは、コンテンツが読み込まれない場合、-1、すなわちEOFに戻る.ここではファイル読み込みであるため、必ずファイルの末尾にEOFが返される.
転載先:https://www.cnblogs.com/hkxadpall/p/9991864.html