4个回答
2013-08-15
展开全部
#include<stdio.h>
#include <conio.h>
void main()
{ int i,j,N;
printf("input N(1<N<10):");
scanf("%d",&N);
while(N>10)
{ printf(" N over 10\nDo agian!");
scanf("%d",&N);
}
for(i=1;i<=N;i++)
{ for(j=1;j<=N+i-1;j++)
{if(j<=N-i) printf(" ");<br> else printf("*");<br> }
printf("\n");
}
for(i=1;i<N;i++)
{ for(j=1;j<=2*N-i-1;j++)
{if(j<=i) printf(" ");<br> else printf("*");<br> }
printf("\n");
}
getch();
} 这里的是一个c语言的,你改改,,,,
#include <conio.h>
void main()
{ int i,j,N;
printf("input N(1<N<10):");
scanf("%d",&N);
while(N>10)
{ printf(" N over 10\nDo agian!");
scanf("%d",&N);
}
for(i=1;i<=N;i++)
{ for(j=1;j<=N+i-1;j++)
{if(j<=N-i) printf(" ");<br> else printf("*");<br> }
printf("\n");
}
for(i=1;i<N;i++)
{ for(j=1;j<=2*N-i-1;j++)
{if(j<=i) printf(" ");<br> else printf("*");<br> }
printf("\n");
}
getch();
} 这里的是一个c语言的,你改改,,,,
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-08-15
展开全部
把上面的那个东西改成java就不行了嘛,System.out.println("");
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-08-15
展开全部
你想用什么方式或者什么做法实现呢?简单的可以用System.out.println()输出,你是要这种?问题没有描述清楚啊!
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-08-15
展开全部
public class Test {
public static void main(String[] args) {
test(3); }
public static void test(int row)
{
for(int i=-row;i<=row;i++)
{
for(int j=-row;j<=row;j++)
{
System.out.print((Math.abs(i)+Math.abs(j)<=row)?"*":" ");
}
System.out.println();
}
}}
public static void main(String[] args) {
test(3); }
public static void test(int row)
{
for(int i=-row;i<=row;i++)
{
for(int j=-row;j<=row;j++)
{
System.out.print((Math.abs(i)+Math.abs(j)<=row)?"*":" ");
}
System.out.println();
}
}}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询