C语言用_号输出字母C的图案的代码

808 阅读1分钟

将做工程过程经常用的内容片段收藏起来,如下的内容内容是关于C语言用*号输出字母C的图案的内容,应该能对大伙有所用途。

#include "stdio.h" #include "conio.h" main() { printf("Hello C-world!n"); getch(); }