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;
}
--------------------------------------------------------------------------------我是邪恶的分割线-------------------------------------
C语言实验——打印图形
Time Limit: 1000MS Memory Limit: 65536KB
Problem Description
请编写程序,打印如下图形:
Input
无输入数据。
Output
输出如下图形:
说明:在上面的图形中,*号共30个。字符串Very good!的首字母前面有10个空格,上下分别有一空行。
Example Input
Example Output
******************************
Very good!
******************************
Hint
Author
wy
-------------------------------------我是邪恶的分割线-----------------------------------------
#include<stdio.h>
int main()
{
printf("******************************\n\n Very good!\n\n******************************");
return 0;
}
-------------------------------------我是邪恶的分割线--------


3828

被折叠的 条评论
为什么被折叠?



