打印金字塔形的数字图案,用JAVA语言怎样编写呀
1个回答
展开全部
public class text2
{
public static void main(String[] args)
{
for(int i = 0;i<8;i++)
{
for(int a = 1;a<8-i;a++)
{
System.out.print(" ");
}
for(int b = 1;b<i;b++)
{
System.out.print(b+" ");
}
for(int c = i;c>0;c--)
{
System.out.print(c+" ");
}
System.out.println();
}
}
}
是这样的吧?
{
public static void main(String[] args)
{
for(int i = 0;i<8;i++)
{
for(int a = 1;a<8-i;a++)
{
System.out.print(" ");
}
for(int b = 1;b<i;b++)
{
System.out.print(b+" ");
}
for(int c = i;c>0;c--)
{
System.out.print(c+" ");
}
System.out.println();
}
}
}
是这样的吧?
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询