打印100比1?怎么样?

时间:2014-03-13 05:13:00

标签: c#

每行打印10个号码,下面是我做了但仍未成功的代码,帮助

namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            int i;

            for (i =100; i>=1; i--)
            {
                       Console.Write(i);

            }
            Console.ReadLine();

        }
    }
}

8 个答案:

答案 0 :(得分:2)

试试这个:

for (i = 100; i >=1; i--)
{
    if(i%10==0)                 //if 10 numbers are printed
        Console.WriteLine();    //then line break
    Console.Write(i+" ");       //print the number with a space character
}
Console.ReadLine();

每行会打印10个数字。

结果:

100 99 98 97 96 95 94 93 92 91 

90 89 88 87 86 85 84 83 82 81 

80 79 78 77 76 75 74 73 72 71 

70 69 68 67 66 65 64 63 62 61 

60 59 58 57 56 55 54 53 52 51 

50 49 48 47 46 45 44 43 42 41 

40 39 38 37 36 35 34 33 32 31 

30 29 28 27 26 25 24 23 22 21 

20 19 18 17 16 15 14 13 12 11 

10 9 8 7 6 5 4 3 2 1 

请参阅ideone中的结果。

答案 1 :(得分:1)

试试这个

static void Main(string[] args)
       {
            int i=100;

             for (i; i <=100; i--)
             {
                Console.Write(i);
                 if(i==0)
                  {
                   break;
                  }

               }
             Console.ReadLine();   

        }

修改

必须使用

if(i==0){break;}

否则这个for循环不会结束。

答案 2 :(得分:1)

using System;
namespace ConsoleApplication2
{
    class Program
    {
        static void Main(string[] args)
        {
            int i;

            for (i = 100; i > 0; i--)
            {
                if(i%10==0)Console.WriteLine();
                Console.Write(i);
            }
            Console.ReadLine();

        }
    }
}

更新演示:http://ideone.com/st4i8n

答案 3 :(得分:1)

static void Main(string[] args)
{
    for (int i = 100; i >0; i--)
    {
        if (i % 10 == 0)
            Console.WriteLine();
        Console.Write(i);                  
    }
    Console.ReadLine();
}

答案 4 :(得分:1)

这可能会满足您的需求:

  Enumerable.Range(1, 100).Reverse()
    .ToList()
    .ForEach(i => Console.Write(i % 10 == 1 ? i + "\r\n" : i + ", "));

将输出:

100, 99, 98, 97, 96, 95, 94, 93, 92, 91
90, 89, 88, 87, 86, 85, 84, 83, 82, 81
80, 79, 78, 77, 76, 75, 74, 73, 72, 71
70, 69, 68, 67, 66, 65, 64, 63, 62, 61
60, 59, 58, 57, 56, 55, 54, 53, 52, 51
50, 49, 48, 47, 46, 45, 44, 43, 42, 41
40, 39, 38, 37, 36, 35, 34, 33, 32, 31
30, 29, 28, 27, 26, 25, 24, 23, 22, 21
20, 19, 18, 17, 16, 15, 14, 13, 12, 11
10, 9, 8, 7, 6, 5, 4, 3, 2, 1

答案 5 :(得分:1)

Enumerable.Range(0, 10).Reverse().ToList().ForEach(n =>
    {
        Enumerable.Range(n * 10, 10).Select(i => i + 1).Reverse().ToList().ForEach(i => Console.Write(i + " "));
        Console.WriteLine();
    });

// output: 100 99 98 97 96 95 94 93 92 91
//         90 89 88 87 86 85 84 83 82 81
//         80 79 78 77 76 75 74 73 72 71
//         70 69 68 67 66 65 64 63 62 61
//         60 59 58 57 56 55 54 53 52 51
//         50 49 48 47 46 45 44 43 42 41
//         40 39 38 37 36 35 34 33 32 31
//         30 29 28 27 26 25 24 23 22 21
//         20 19 18 17 16 15 14 13 12 11
//         10 9 8 7 6 5 4 3 2 1

答案 6 :(得分:0)

HundredToOne()
{
    for(int i=100;i>0;i--)
    {       
     if(i%10 == 0)
      Console.WriteLine("\n");

      Console.Write(i);
    }
}

答案 7 :(得分:0)

您还可以使用StringBuilder每行构建10个数字,但是如此连接应该会产生足够的结果(因为它只有100个数字)

foreach (var number in Enumerable.Range(1, 100).ToArray().Reverse())
{
    Console.Write((number % 10 == 0) ? "\n" : (number.ToString() + " "));
}