易百教程

编写程序来编写一个for循环,从z(小写Z)向后计数到(小写A)

编写一个for循环,从z(小写Z)向后计数到(小写A)打印每个字母的值。

实现代码

#include <stdio.h>

int main()
{
    char alphabet;

    for(alphabet='z';alphabet>='a';alphabet=alphabet-1)
    {
        printf("%c ",alphabet);
    }
    putchar('\n');
    return(0);
}

执行上面示例代码,得到以下结果:

hema@ubuntu:~/book$ gcc main.c
hema@ubuntu:~/book$ ./a.out
z y x w v u t s r q p o n m l k j i h g f e d c b a