循環結構 第一篇: for循環
循環就是有規律性的重複,在程式結構中可以減少源程式重複書寫的工作量,用來重複執行相同的語句,在C#中有四種循環結構。
1. For循環
2.Foreach循環
3.While循環
4.Do….while循環
那麼首先來學習一下第一篇:For循環。
For 語句是C#中使用頻率最高的循環語句,在事先知道循環次數的情況下,使用for循環是比較友善的,for 循環的文法為:
For (初始值;表達式1;表達式2)
{
代碼塊
}
用程式流程圖表示for循環的程式結構如下圖:
了解了for循環的文法,現在我們通過兩個例子來解釋一下for循環。
例一:顯示1至12月份:
Step1 :首先建立一個網站,在網頁中拖入一個Button控件和一個Lable控件,并修改控件ID和Text 如下圖所示效果。
Step2 :輕按兩下Button按鈕,在Default.asp.cs頁面中編寫代碼(如下所示)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
Label1.Text = null;
for (int i = 1; i <= 12; i++)
{
Label1.Text += Convert.ToString(i) + "月" + " ";
}
}
}
Step3 :首先生成網站,然後按快捷鍵Ctrl + F5,單擊“顯示月份”按鈕,完成效果如下圖:
例二:分類顯示
Step1 : 建立一個網站,在網頁中拖入一個Button控件和一個Lable控件,并修改控件ID和Text 如下圖所示效果。
Step2 :輕按兩下Button按鈕,在Default.asp.cs頁面中編寫代碼(如下所示)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
Label1.Text = null;
string[] flower = { "紅玫瑰", "康乃馨", "梅花", "百合", "藍色妖姬", "手提花籃" };
string[] url = { "www.yahoo.com", "www.126.com", "www.google.com", "www.hao123.com", "www.sina.com", "www.baidu.com" };
for (int i = 0; i < flower.Length; i++)//flower.Length擷取數組長度
{
Label1 .Text +="<a href="+url[i]+" target="_blank" rel="external nofollow" >"+flower[i]+"</a>"+"</br>";
}
}
}
Step3 :首先生成網站,然後按快捷鍵Ctrl + F5,單擊“顯示鮮花分類”按鈕,完成效果如下圖:
注意要點:在例一和例二中的指派運算符“+=”,y += x 相當于 y = y + x,“+=”後面的操作數
與前面的操作數相加或進行字元串連結後,指派給前面的操作數。