交作业打印字符画
#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
耶~
gcc test.c && ./a.out
使用这种方式跑起编码,如果需要单步调试,能否支持?命令,参数,如何输入?谢谢 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]