C语言——实例006 用*号输出字母C的图案。

来源:互联网 发布:甲骨文广播铃声软件 编辑:程序博客网 时间:2024/05/17 07:15
/*Name: Copyright: Author: Date: 29/07/17 09:26Description: 【程序6】题目:用*号输出字母C的图案。*/ #include <stdio.h> int main(){printf("Hello C-world!\n\n");printf(" ****\n");printf(" *\n");printf(" * \n");printf(" ****\n");return 0;}