C#中while輪回語句用法實例詳解。本站提示廣大學習愛好者:(C#中while輪回語句用法實例詳解)文章只能為提供參考,不一定能成為您想要的結果。以下是C#中while輪回語句用法實例詳解正文
本文實例講述了C#中while輪回語句用法。分享給年夜家供年夜家參考。詳細完成辦法以下:
在C#中while輪回是我們常常會用到的一種輪回語句,while輪回特色是直到前提為零時才跳出輪回,固然中央可以應用其它函數直接跳出,關於while的詳細用法有需要做一個較為詳實的剖析。
先來講Foreach和For的差別,Foreach是針對對象停止遍歷的,不須要界說輪回次數,然則有個缺陷,Foreach遍歷取的是只讀數據,不克不及在Foreach中停止對象的增刪改,而For輪回便可以。這個改成while輪回的代碼以下:
int i=0;while(i<ds.Table["userreg"].Rows.Count){i++;}
示例以下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace 中止輪回
{
class Program
{
static void Main(string[] args)
{
//100之內拍七
int i = 0;
while (i < 100)
{
i++;
if(i%7==0 || i%10==7||i/10==7)
{
continue;
}
Console.WriteLine("{0}",i);
}
Console.ReadKey();
}
}
}
彌補:
while中return,continue,break的差別:
return:加入main函數
continue:直接停止下輪輪回
break:直接跳出以後輪回
願望本文所述對年夜家的C#法式設計有所贊助。