码迷,mamicode.com
首页 > Windows程序 > 详细

2. C# -- do{...} while();while(){...};for()的用法

时间:2015-05-12 11:40:03      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:c#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication1
{
    class Program
{
        static void Main(string[] args)
{
            Console.WriteLine("Output the do{...} while() result");
            int i = 1;
            do 
{
                Console.WriteLine("{0}",i++);
}
            while(i<=10);
 
            Console.WriteLine("Output the while(){...}  result");
            int j = 1;
            while(j<=10)
{
                Console.WriteLine("{0}",j++);
}
            Console.WriteLine("Output for(;;)  result");
            int k = 1;
            for (k = 1; k <= 10; ++k)
{
                Console.WriteLine("{0}",k);
}
            Console.ReadLine();
}
}
}


本文出自 “Ricky's Blog” 博客,请务必保留此出处http://57388.blog.51cto.com/47388/1650508

2. C# -- do{...} while();while(){...};for()的用法

标签:c#

原文地址:http://57388.blog.51cto.com/47388/1650508

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!