/*
question :*
* *
* * *
* * * *
*/
using System;
namespace TestApp
{
class Test
{
static void SetLength(int Length)
{
for(int i=1; i<=Length; i++)
{
// for(int k=1; k<=i%2+1; k++)
// {
// Console.Write("_");
// }
for(int j=1; j<=i; j++)
{
Console.Write("*");
}
Console.WriteLine();
}
}
static void Main()
{
int i=1;
while(i>0)
{
Console.Write("输入一个整数: ");
i = Int32.Parse(Console.ReadLine());
SetLength(i);
}
}
}
}
C#基础编程---******
最新推荐文章于 2018-04-17 22:47:34 发布