CodeFoeces-520A

题目

原题链接:A. Pangram

题意

给定一串字符,问是不是全字母短句。需要注意的是输入长度n后要的换行符。

代码

#include
int main() {
    int n;
    char s,low[26]={0},up[26]={0};
    scanf("%d\n",&n);
    for(int i=0;i='a' && s<='z'){
            low[s-'a']=1;
        }else if(s>='A' && s<='Z'){
            up[s-'A']=1;
        }
    }
    for(int i=0;i<26;i++){
        if(low[i]==0 && up[i]==0){
            printf("NO\n");
            return 0;
        }
    }
    printf("YES\n");
    return 0;
}

你可能感兴趣的:(CodeFoeces-520A)