当前位置: 首页 > 工具软件 > Zaz > 使用案例 >

c语言打印a-Z字母的方法

颛孙钱青
2023-12-01

打印从a到Z的所有字母。

#include <stdio.h>
//打印从a到Z的所有字母。

//方式一 :
void Printf_a_Z_mode1(void)
{
    char Start_Bit = 'a';

    int i = 8;  //8个一行

    while (('Z'+1) != Start_Bit)
    {

        printf("%c  ", Start_Bit);
        Start_Bit++;

        i--;
        if(0 == i)
        {
            i = 8;
            printf("\n");
        }

        if (('z'+1)==Start_Bit)
        {
            Start_Bit = 'A';
        }

        
    } 
}

//方式二:
void Printf_a_Z_mode2(void)
{
    char* String = "abcdefghijklnmopqrstuvwxyzABCDEFGHIJKLNMOPQRSTUVWXYZ";

    int i = 8;  //8个一行
    while (*String)
    {
        while ((i--)&&(*String))
        {
            printf("%c  ", *String++);
        }
        i = 8;
        printf("\n");
    }
}

void main()
{
    
    Printf_a_Z_mode1();    //使用发送一

    printf("\n"); printf("\n"); printf("\n");
    
    Printf_a_Z_mode2();    //使用发送二
}

注:char有两种赋值方式
1、char s = 65;
2、char s = ‘a’;
其实两种赋值方式,s得到的值都是一样的(因为字符a的allsa码值就是65)。
char是一个字符类型,其实也是一个数值类型。
把它当做字符看待时,变量s是a,比如printf("s=%c ";s);输出是s=a。
把它当做数值看待时,变量s是65,比如printf("s=%d ";s);输出是s=65。

 类似资料: