全部代码

输出26个字母

实则是char练习

code 输出26个字母.c
#include<stdio.h>

int main()
{
    char WORD='A';
    char word='a';
    for(int times=1;times<=26;times++){
        printf("%c %c\n",word,WORD);
        word++;
        WORD++;
    }
    return 0;
}