用*号输出字母C的图案.

#include <stdio.h>
int main()
{      /*用*号输出字母C的图案*/
    printf("hello C-world\n");
    printf(" ****\n");
    printf(" **\n");
    printf(" **\n");
    printf(" ****\n");
    getch();
    return 0;
}

posted @ 2013-03-04 12:09  王井玉  阅读(879)  评论(0编辑  收藏  举报