传说中的暗暗 发表于 2022-9-10 22:51:39

交作业打印字符画

#include <stdio.h>
int main()
{
      printf("\n\
☆┌─┐ ─┐☆\n\
 │※│ /※/\n\
 │※│/※/\n\
 │※ /※/─┬─┐\n\
 │※│※|※│※│\n\
┌┴─┴─┐-┘─┘\n\
│※※※※│※※※│\n\
│※┌──┘※※※│\n\
└┐※※※※※※┌┘\n\
└┐※※※※┌┘\n\
 │※※※※│\n");
      return 0;
}


输出结果

orangepi@OpiZero2:~$ gcc test.c && ./a.out

☆┌─┐ ─┐☆
 │※│ /※/
 │※│/※/
 │※ /※/─┬─┐
 │※│※|※│※│
┌┴─┴─┐-┘─┘
│※※※※│※※※│
│※┌──┘※※※│
└┐※※※※※※┌┘
└┐※※※※┌┘
 │※※※※│

zhangjinxuan 发表于 2022-10-21 20:24:24

耶~

howzyao 发表于 2022-10-22 02:29:22

zhangjinxuan 发表于 2022-10-21 20:24
耶~

gcc test.c && ./a.out
使用这种方式跑起编码,如果需要单步调试,能否支持?命令,参数,如何输入?谢谢

传说中的暗暗 发表于 2022-10-24 22:42:23

howzyao 发表于 2022-10-22 02:29
gcc test.c && ./a.out
使用这种方式跑起编码,如果需要单步调试,能否支持?命令,参数,如何输入?谢 ...

gcc test.c
./a.out
分两行就行,&& 是连续执行下一步命令而已
gcc test.c 后会生成 a.out 文件

也可这样
gcc test.c -o test
./test
输出名为test的文件
页: [1]
查看完整版本: 交作业打印字符画