用C#编程在屏幕上输出一个n行的金字塔图案,例如,若n=5,则图案
推荐于2018-04-15
展开全部
c# asp.net 写的代码 int line=5; // 行数 也就是你说的n
//控制输出多少行
for(int i=0;i<line;i++)
{
//输出空格
for (int x = 0; x < line-i; x++)
{
Response.Write(" ");
}
//输出星号
for(int y=0;y<2*i+1;y++)
{
Response.Write("*");
}
Response.Write( "<br>\n");
}
//控制输出多少行
for(int i=0;i<line;i++)
{
//输出空格
for (int x = 0; x < line-i; x++)
{
Response.Write(" ");
}
//输出星号
for(int y=0;y<2*i+1;y++)
{
Response.Write("*");
}
Response.Write( "<br>\n");
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-12-03
展开全部
你是要程序?还是结果?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询