c#只用一個for輸出三角形

來源:互聯網
上載者:User

近日到某公司面試,其中有道面試題是這樣的:

要求只使用一個for迴圈輸出下面圖形:

----

如果可以使用2個for(即嵌套迴圈的話),那這題就很簡單了。

但只能用一個for,這可把我想得,想到面試都結束了沒想出來。

TMD,肯定是腦子短路了!!!

  鬱悶的是,等到第2天重新一想,居然很快就想出來了,使用String對象,可以達成輸出重複字元的效果!!!

 代碼貼在下面:

 

代碼

using System;
using System.Collections.Generic;
using System.Text;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            Render(19);

            Console.Read();
        }

        static void Render(int rowNum)
        {
            if (rowNum <= 0 || !System.Text.RegularExpressions.Regex.IsMatch(rowNum.ToString(),@"^\d+$"))
                return;
            int tmpRow = 0;
            for (int i = 1; i <= rowNum; i++)
            {
                //對稱輸出
                tmpRow = i <= rowNum / 2 ? i : rowNum - i + 1;               
                Console.WriteLine("{0}", new string('*', 2 * tmpRow - 1));
            }
        }
    }
}

 --下面是php版本

 

 1 <?php
 2 //phpinfo();
 3   function Dis($num)
 4   {
 5       if($num<=0)
 6        return;
 7       $tmpRow=0;
 8       for($i=1;$i<=$num;$i++)
 9       {
10           $tmpRow=$i<=$num/2 ? $i:$num-$i+1;
11           echo str_repeat('*',2*$tmpRow-1).'<br />';
12       }
13   }
14   
15   Dis(19);
16 ?>

 

 

 

很簡單的東西,把我給卡住了。

類似的東西還有:如何在for裡面實現不間斷的迴圈?《在for裡面改變for的條件就是了》

----------------------------------------------------------------------

間隙性的知足,以儆效尤!!!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.