用星号输出字母C的图案.c
#include<stdio.h>
void main(){
printf("用*号输出C字母\n");
printf("****\n");
printf("*\n");
printf("* \n");
printf("****\n");
getchar();
}