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

来源:互联网 发布:向男友求饶知乎 编辑:程序博客网 时间:2024/06/09 17:02

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

Time Limit: 1000MS Memory Limit: 65536KB
Submit Statistic

Problem Description

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

Input

无输入数据。

Output

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

Example Input

Example Output

*************
#include<stdio.h>int main(){    printf("*****\n*\n*\n*\n*****\n");    return 0;}


原创粉丝点击