C# 一个例子,北大青鸟的。自己变了下。
时间:2010-10-19 来源:胖子黎
using System.Collections.Generic;
using System.Text;
namespace PrintNumbers
{
///<summary>
///画一个松数.
///</summary>
///
public class DrawTree
{
int Width;
public int Width1
{
get { return Width; }
set { Width = value; }
}
int Height;
public int Height1
{
get { return Height; }
set { Height = value; }
}
int x, y;
public DrawTree()
{
Console.WriteLine("画一个松数,让你们见识我的强大吧。");
}
public void EnterWidth()
{
do
{
int temp = 0;
Console.Write("请输入松树的宽度:");
if (!int.TryParse(Console.ReadLine(), out temp))
{
Console.WriteLine("请输入数字!(奇数)");
continue;
}
else if (temp % 2 == 0)
{
Console.WriteLine("请输入数字,奇数!");
continue;
}
else
{
Width = temp;
break;
}
} while (true);
}
public void EnterHeight()
{
int temp = 0;
do
{
Console.Write("请输入松树的高度:");
if (!int.TryParse(Console.ReadLine(), out temp))
{
Console.WriteLine("请输入数字!");
continue;
}
else
{
Height = temp;
break;
}
} while (true);
}
public override string ToString()
{
return string.Format("\n\n\n\n=======================================\nNow ! 睁大你的狗眼吧,看看我将会为你画一个树子出来哦!\n树子度高是{0,-6}高度是{1,-5}", Width, Height);
}
public void DrawATree()
{
this.DrawATree(Width, Height);
}
public void DrawATree(int width, int height)
{
///<summary>
///画树冠
///</summary>
///
//for (int i = 0; i < length; i++)
//{
//}
for (int i = 1; i < width; i++)
{
for (int k = 0; k < width-i; k++)
{
Console.Write(" ");
}
for (int j = 0; j < 2*i-1; j++)
{
Console.Write("*");
}
Console.WriteLine();
}
for (int m = 0; m < height; m++)
{
for (int i = 0; i <width-1; i++)
{
Console.Write(" ");
}
Console.WriteLine("*\n");
}
}
}
class Program
{
static void Main(string[] args)
{
DrawTree tree = new DrawTree();
tree.EnterWidth();
tree.EnterHeight();
Console.WriteLine(tree.ToString());
tree.DrawATree();
}
}
}
//画一个松树,让你们见识我的强大吧。
请输入松树的宽度:12
请输入数字,奇数!
请输入松树的宽度:12
请输入数字,奇数!
请输入松树的宽度:15
请输入松树的高度:12
=======================================
Now ! 睁大你的狗眼吧,看看我将会为你画一个树子出来哦!
树子度高是15 高度是12
*
***
*****
*******
*********
***********
*************
***************
*****************
*******************
*********************
***********************
*************************
***************************
*
*
*
*
*
*
*
*
*
*
*
*
请按任意键继续. . .
//非常遗憾.控制台下面都是OK的,估计空格不一样吧。