C语言实验——用*号输出字母C的图案 (sdut oj)

来源:互联网 发布:苹果6怎么恢复备份数据 编辑:程序博客网 时间:2024/06/02 11:52


C语言实验——用*号输出字母C的图案

Time Limit: 1000MS Memory Limit: 65536KB


Problem Description

请编程序用*号输出字母C: 
*****
*
*
*
*****


Input

无输入数据。


Output

输出用*号描述的字母C:
*****
*
*
*
*****


Example Input

Example Output

*************


Hint

Author

wy



参考代码


#include <stdio.h>
int main()
{
    printf("*****\n*\n*\n*\n*****");
    return 0;
}
0 0
原创粉丝点击