码迷,mamicode.com
首页 > Windows程序 > 详细

C#系列之圣诞树代码(五)

时间:2017-12-17 15:00:51      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:log   png   分享   gpo   .com   最简   write   数字   大小   

马上就到圣诞节啦,这里我写啦一个最简单的圣诞树代码

Console.WriteLine("请输入您需要的圣诞树的大小<数字>");
int n = int.Parse(Console.ReadLine());

int i, j, k, m;
for (i = 1; i <= n / 2; i++)
{
for (j = 1; j < n / 2 + i; j++)
{
if (j <= n / 2 - i)
Console.Write(" ");
else {
if (j % 2 == 0)
Console.Write("$");
else
Console.Write("*");
}
}
Console.WriteLine("\n");
}
for (k = n / 2 + 1; k <= n - n / 4; k++)
{
for (m = 1; m <= n + 1; m++)
{
if (m != n / 2)
Console.Write(" ");
else
Console.Write("||");
}
Console.WriteLine("\n");

}
Console.ReadKey();

输出后结果如图所示:

技术分享图片

 

C#系列之圣诞树代码(五)

标签:log   png   分享   gpo   .com   最简   write   数字   大小   

原文地址:http://www.cnblogs.com/fqhy/p/8052035.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!