【C 语言经典100例 | 菜鸟教程】C 语言练习实例7

解题思路

在C语言环境中修改MSDOS活动代码页需要导入库,并使用MSDOS系统的chcp+code命令进行修改。

关于代码页的简单说明可以参考:《百度百科:代码页》

//
// Created by crazy_pig on 2022/8/31.
// References from : https://www.runoob.com/cprogramming/c-100-examples.html
//

#include "../include/L7.h"
#include 

void L7() {
    system("chcp 437");
    char a = 176, b = 219;
    printf("%c%c%c%c%c\n", b, a, a, a, b);
    printf("%c%c%c%c%c\n", a, b, a, b, a);
    printf("%c%c%c%c%c\n", a, a, b, a, a);
    printf("%c%c%c%c%c\n", a, b, a, b, a);
    printf("%c%c%c%c%c\n", b, a, a, a, b);
}

Result

【C 语言经典100例 | 菜鸟教程】C 语言练习实例7_第1张图片

你可能感兴趣的:(C语言,c语言,c++,算法)