用C#编辑程序,要求输出如下图形(拜托编程高手了)

用C#编辑程序,要求输出如下图形*******************************************************... 用C#编辑程序,要求输出如下图形
* * * * * * * * * *
* * * * * * * * *
* * * * * * * *
* * * * * * *
* * * * * *
* * * * *
* * * *
* * *
* *
*
展开
 我来答
anhl
2010-07-11 · TA获得超过1181个赞
知道小有建树答主
回答量:1218
采纳率:0%
帮助的人:543万
展开全部
using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
for (int i = 10; i >= 1; i--)
{
Console.WriteLine(print(i));
}
Console.Read();
}

private static string print(int num)
{
string r = string.Empty;
for (int i = 0; i < num; i++)
{
r += "*";
}
r += "\n";
return r;
}
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友2dc3d30
2010-07-15 · TA获得超过302个赞
知道答主
回答量:108
采纳率:0%
帮助的人:63.5万
展开全部
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication35
{
class Program
{
static void Main(string[] args)
{
for (int i = 10; i >= 1; i--)
{
for (int j = 1; j <= i; j++)
{
Console.Write("*");
}
Console.WriteLine();
}
Console.ReadLine();
}
}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式