标题:c语言基础"如何用星号画出一个矩形?"
只看楼主
teddy1986
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2007-12-11
 问题点数:0 回复次数:2 
c语言基础"如何用星号画出一个矩形?"
刚刚开始学C,遇到一个用星号画矩形的例子,编出程序却运行不了,不知道是哪出了毛病,请各位大侠指点迷津,下面是我编出的程序:
/* 用*号画一个矩形 */
#include "stdio.h"
int main(void)
{
int len,hollow,i;
printf("Please input the length of the square:");
scanf("%d",&len);
for(i = 0;i ! = len;++i)
{
putchar('*');
}
putchar('\n');
hollow = len - 2;
for(i = 0;i ! = hollow;++i)
{
int j;
putchar('*');
for(j = 0;j ! =hollow;++j)
{
putchar('');
}
printf("*\n"0;
}
for(i = 0;i ! = len;++i)
{
putchar('*');
}
putchar('n');
return 0;
}
搜索更多相关主题的帖子: 星号 c语言 矩形 hollow 
2007-12-16 11:17
598156412
Rank: 1
等 级:新手上路
帖 子:43
专家分:0
注 册:2007-12-16
得分:0 
#include "stdio.h"
int main(void)
{
int len,hollow,i;
printf("Please input the length of the square:");
scanf("%d",&len);
for(i=0;i!=len;i++)
{
putchar('*');
}
putchar('\n');
hollow = len - 2;
for(i=0;i!=hollow;i++)
{
int j;
putchar('*');
for(j=0;j!=hollow;j++)
{
putchar('');
}
printf("*\n");
}
for(i=0;i!=len;i++)
{
putchar('*');
}
putchar('\n');
return 0;
}
这个我调试了没问题!!!
2007-12-16 13:07
善哉善哉
Rank: 1
等 级:新手上路
帖 子:6
专家分:0
注 册:2015-3-14
得分:0 
加油
加油
2015-03-14 22:29



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-192735-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.026475 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved