0

我已经用嵌套的 for 循环做到了这一点,但我也想知道如何用 while 循环做到这一点。我已经有了这个

 int j = 10;
     int k = 0;
     while (j > 0)
     {
        if (k <= j)
        {
           Console.Write("* ");
           Console.WriteLine();
        }
        j--;
     } Console.WriteLine();

它打印出一行星星(*)。我知道内部循环必须引用外部循环,但我不确定如何在 while 语句中执行此操作。

4

4 回答 4

4

由于这已经使用嵌套的 for 循环完成,因此转换为 while 循环是直截了当的。(如果使用相同的算法,2 个 for 循环将产生 2 个 while 循环,而不是 1 个。)

这个for循环

for (initializer; condition; iterator) {
    body;
}

相当于这个while循环:

initializer;
while (condition) {
    body;
    iterator;
}

Nit:在 C# 5 中实际上有一个关于变量生命周期的重大变化,使得上述永远不太一样(在 C# 5+ 中),但这是尚未最终确定的语言规范的另一个主题,只有影响绑定在闭包中的变量。

于 2012-09-12T21:40:29.963 回答
3

for 循环可以与 while 循环轻松互换。

// Height and width of the triangle
var h = 8;
var w = 30;

// The iterator variables
var y = 1;
var x = 1;

// Print the tip of the triangle
Console.WriteLine("*");

y = 1;
while (y++ <h) {
    // Print the bit of left wall
    Console.Write("*");

    // Calculate length at this y-coordinate
    var l = (int) w*y/h;

    // Print the hypothenus bit
    x = 1;
    while (x++ <l-3) {
            Console.Write(" ");
    }
    Console.WriteLine("*");
}

// Now print the bottom edge
x = 0;
while (x++ <w) {
    Console.Write("*");
}

输出:

*
*   *
*       *
*           *
*              *
*                  *
*                      *
*                          *
******************************
于 2012-09-12T21:49:18.270 回答
1

这确实会产生类似于三角形的东西:

int x = 1;
int j = 10;
int k = 0;
while (j > 0)
{
    if (k <= j)
    {
       Console.Write("* ");
    }
    if (j >= 1)
    {
        int temp = x;
        while (temp >= 0)
        {
            Console.Write(" ");
            temp--;
        }
        x = x + 1;
        Console.Write("*");

     }
       Console.WriteLine();
       j--;
   }
   Console.WriteLine();
   double f = Math.Round(x * 1.5);
   while (f != 0)
   {
      Console.Write("*");
      f--;
   }
于 2012-09-12T21:58:36.527 回答
0
 class x
    {
        static void Main(string[] args)
        {
            int i, j;
            for ( i=0;i<10;i++)
            {
                for (j = 0; j < i; j++)
                    Console.Write("*");
                Console.WriteLine();
            }

        }

    }
于 2013-03-22T13:35:34.183 回答