close

        // 題目:印出由1到200,所有能被13所整除的整數。
        string strPrint = "";
        for (int ii = 1; ii <= 200; ii++)
        {
            if(ii % 13 ==0){
                strPrint += (string.IsNullOrEmpty(strPrint) ? "" : "  ") + ii.ToString();
            }
        }
        Response.Write(strPrint.ToString());

 

文章出處: http://goodlucky.pixnet.net/blog/post/746243402


arrow
arrow
    創作者介紹
    創作者 Roger 的頭像
    Roger

    歡迎~ 程式設計 學生 作業 專題製作 程式外包 家教...

    Roger 發表在 痞客邦 留言(0) 人氣()