C语言 输出星星问题 用循环

 我来答
百度网友d585d01
2014-11-10 · TA获得超过670个赞
知道小有建树答主
回答量:339
采纳率:0%
帮助的人:469万
展开全部
#include<stdio.h>
#include<malloc.h>
#include<math.h>
int main()
{
int i,j,n;
//char data[61][61];
char **data=NULL;
scanf("%d",&n);
data=(char**)malloc(sizeof(int*)*(2*n+1));
if(data==NULL)
return 1;
for(i=0;i<2*n+1;i++)
{
*(data+i)=(char*)malloc(sizeof(int)*(2*n+1));
}
for(i=0;i<2*n+1;i++)
{
for(j=0;j<2*n+1;j++)
{
if(i<n+1)
{
if(i>=abs(j-n))
{
data[i][j]='*';
}
else
{
data[i][j]=' ';
}
}
else
{
if(2*n+1-i>abs(j-n))
{
data[i][j]='*';
}
else
{
data[i][j]=' ';
}
}
}
}
for(i=0;i<2*n+1;i++)
{
for(j=0;j<2*n+1;j++)
{
printf("%c",data[i][j]);
}
printf("\n");
}
for(i=0;i<2*n+1;i++)
{
free(*(data+i));
data[i]=NULL;
}
free(data);
data=NULL;
return 0;

}

 

更多追问追答
追问
不是 第一行1个 第二行3个 第三行5个 第四行7个
追答
有没有截图,怎么输出的?
White_MouseYBZ
2015-12-21 · TA获得超过4万个赞
知道大有可为答主
回答量:2.1万
采纳率:82%
帮助的人:6576万
展开全部

由于只有奇数层才能正确显示,故对输入的n自动作“不小于输入值的奇数”处理,即若输入4则自动增为5。且考虑到屏幕大小,作了小于30层的限制。举例代码如下:

//#include "stdafx.h"//If the vc++6.0, with this line.
#include "stdio.h"
int main(void){
    char i,j,n;
    while(1){
        printf("How many layers?\nn=");
        if(scanf("%d",&n) && n<30)//To display for a complete
            break;
        printf("Too large, enter again. ");
    }
    for(n/=2,j=0,i=1;i>0;j++<n ? i+=2 : i-=2)
        printf("%*.*s\n",45+(i>>1),i,"*****************************");
    printf("\n");
    return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式