#include<stdio.h>
#include<stdlib.h>
/*题目:输出特殊图案,请在c 环境中运行,看一看, VeryBeautiful!*/
int main()  {
    system("color 1F");  // 设定显示框为蓝底白字
    system("mode con cols=80 lines=30");  //固定显示框尺寸
/******************************************程序主体分割线(顶部)*************************/

    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);



/******************************************程序主体分割线(底部)***************************/
    return 0;
}

这题什么意思我也没搞清楚,照搬的原答案

 

相关文章:

  • 2021-09-04
  • 2021-07-29
  • 2022-12-23
  • 2021-08-18
  • 2021-09-26
  • 2022-12-23
  • 2021-12-19
  • 2022-01-30
猜你喜欢
  • 2022-12-23
  • 2021-04-03
  • 2021-06-29
  • 2022-02-04
  • 2021-12-06
  • 2022-12-23
  • 2022-01-01
相关资源
相似解决方案