C#系列教程——迭代语句do定义及使用
时间:2014-01-21 10:05:06
收藏:0
阅读:427
代码如下:
using System; public class DoWhile_Test { public static void Main() { int x = 0; do { Console.WriteLine("循还数据{0}", x); x++; } while (x < 15); } }
原文:http://blog.csdn.net/jianxia_wzx/article/details/8546259
评论(0)