c#實(shí)例源代碼_第1頁(yè)
c#實(shí)例源代碼_第2頁(yè)
c#實(shí)例源代碼_第3頁(yè)
c#實(shí)例源代碼_第4頁(yè)
c#實(shí)例源代碼_第5頁(yè)
已閱讀5頁(yè),還剩4頁(yè)未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說(shuō)明:本文檔由用戶(hù)提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

1、【精品文檔】如有侵權(quán),請(qǐng)聯(lián)系網(wǎng)站刪除,僅供學(xué)習(xí)與交流c#實(shí)例源代碼.精品文檔.【實(shí)例1-1】using System;using System.Collections.Generic;using System.Text;namespace _ class Program static void Main(string args) System.Console.WriteLine(恭喜你,學(xué)會(huì)了C#編程!); System.Console.ReadLine();【實(shí)例1-2】private void Form1_Load(object sender, EventArgs e) this.Text

2、=這是一窗口!;Label lbShow = new Label();lbShow.Location = new Point(40,50);lbShow.AutoSize = true;lbShow.Text = 恭喜你學(xué)會(huì)編程了!;this.Controls.Add(lbShow); int x, y;x = new int5 1,2,3,4,5;y = new int5;y = x;foreach (int a in y)lbShow.Text += a.ToString();this.Controls.Add(lbShow);【實(shí)例2-1】using System;using Syste

3、m.Windows.Forms;namespace TestEnum public partial class TestEnum : Form /Visual Studio .Net自動(dòng)生成的構(gòu)造函數(shù),后文示例將全部省略 public TestEnum() InitializeComponent(); enum MyEnum a = 101, b, c, d = 201, e, f ; /聲明枚舉型 private void TestEnum_Load(object sender, EventArgs e) MyEnum x = MyEnum.f; /使用枚舉型 MyEnum y = (MyE

4、num)202; string result =枚舉數(shù)x的值為; result += (int)x; /將x轉(zhuǎn)換為整數(shù) result += n枚舉數(shù)y代表枚舉元素 + y; lblShow.Text = result;【實(shí)例2-2】using System;using System.Windows.Forms;namespace TestStru public partial class TestStru : Form struct Student /聲明結(jié)構(gòu)型 /聲明結(jié)構(gòu)型的數(shù)據(jù)成員 public int no; public string name; public char sex; pu

5、blic int score; /聲明結(jié)構(gòu)型的方法成員 public string Answer() string result=該學(xué)生的信息如下:; result += n學(xué)號(hào): + no; /n為換行符 result += n姓名:+ name; result += n性別:+ sex; result += n成績(jī):+ score; return result; /返回結(jié)果 private void TestEnum_Load(object sender, EventArgs e) Student s; /使用結(jié)構(gòu)型 s.no = 101; = 黃海; s.sex = 男;

6、s.score = 540; lblShow.Text = s.Answer(); /顯示該生信息 lblShow.Text += nn+DateTime.Now; /顯示當(dāng)前時(shí)間【實(shí)例2-3】using System;class TestConstant static void Main(string args) Console.WriteLine(0).GetType(); /有符號(hào)的32位整型常量 Console.WriteLine(0U).GetType(); /無(wú)符號(hào)的32位整型常量 Console.WriteLine(0L).GetType(); /64位的長(zhǎng)整型常量 Consol

7、e.WriteLine(0F).GetType(); /32位的浮點(diǎn)型常量 Console.WriteLine(0D).GetType(); /64位的雙精度型常量 Console.WriteLine(0M).GetType(); /128位的小數(shù)型常量 Console.WriteLine(0).GetType(); /16位的字符型常量 Console.WriteLine(0).GetType(); /字符串常量 Console.WriteLine(0.0).GetType(); /64位的雙精度型常量 Console.WriteLine(true).GetType(); /布爾型常量 Co

8、nsole.WriteLine(u0041).GetType(); /16位的字符型常量Console.ReadLine();【實(shí)例2-4】using System;class TestVariable static void Main(string args) int a = 12, b = 15, c, d, e; c = a + b; d = a - b; e = a * b; Console.WriteLine(c=0td=1te=2, c, d, e);【實(shí)例2-5】using System;using System.Windows.Forms;namespace TestVaria

9、ble public partial class TestOperator : Form private void TestVariable_Load(object sender, EventArgs e) int i = 5, j = 5, p, q; p = (i+) + (i+) + (i+); q = (+j) + (+j) + (+j); string t = ; lblShow.Text = i + t + j + t + p + t + q;【實(shí)例2-6】using System;using System.Windows.Forms;namespace TestVariable

10、public partial class TestOperator : Form private void TestVariable_Load(object sender, EventArgs e) int a, b = 5; char c1 = A; a = c1; /字符型轉(zhuǎn)整型 float x = 3; x += b; /整型轉(zhuǎn)浮點(diǎn)型 lblShow.Text = a= + a; /整型轉(zhuǎn)為字符串 lblShow.Text += nx= + x; /浮點(diǎn)型轉(zhuǎn)為字符串【實(shí)例2-7】using System;using System.Windows.Forms;namespace TestV

11、ariable public partial class TestOperator : Form private void TestVariable_Load(object sender, EventArgs e) int i = 25, j = 12; bool k; string result = i!=j的值為 + (i != j); result += n i!=j & i=j的值為 + (i != j & i = j); result += n i!=j & i=j+20的值為 +(i != j & i = j + 20); result += n k = i!=j & i=j的值為

12、 + (i != j & i = j); lblShow.Text = result;【實(shí)例2-8】using System;using System.Windows.Forms;namespace TestInterface public partial class TestInterface : Form interface IStudent /聲明接口 string Answer(); class Student : IStudent /聲明類(lèi),以實(shí)現(xiàn)接口 public int no; public string name; public string Answer() string r

13、esult = 該學(xué)生信息如下:; result += n學(xué)號(hào): + no; result += n姓名: + name; return result; private void btnOk_Click(object sender, EventArgs e) Student a = new Student(); /定義并初始化變量a a.no = Convert.ToInt32(txtStuID.Text); = txtName.Text; lblShow.Text = a.Answer();【實(shí)例2-9】using System;class HelloWorld public

14、string HelloCN() return 你好!我是Jackson,中國(guó)人。; public string HelloEN() return Hi! I am Jackson, a American.;class TestDelegate delegate string MyDelegate(); /聲明委托 static void Main(string args) HelloWorld hello = new HelloWorld(); /創(chuàng)建對(duì)象 MyDelegate h = new MyDelegate(hello.HelloCN); /創(chuàng)建委托對(duì)象并指向一個(gè)方法 Console

15、.WriteLine(h(); /通過(guò)委托對(duì)象調(diào)用所指向的方法 h = new MyDelegate(hello.HelloEN); Console.WriteLine(h();【實(shí)例2-10】using System;class TestArray static void Main(string args) int x,y; /聲明數(shù)組 x = new int5 1,5,3,2,4; /初始化數(shù)組 y = new int5; Array.Copy(x, y, 5); /將數(shù)組x的5個(gè)元素復(fù)制到數(shù)組y中 Console.WriteLine(成功地從數(shù)組x復(fù)制到數(shù)組y,數(shù)組y各元素值如下:);

16、for (int i = 0; i y.Length; i+) Console.Write(0t, yi); Array.Sort(x); /將數(shù)組x的元素排序 Console.WriteLine(n經(jīng)過(guò)排序后,數(shù)組x各元素值如下:); for (int i = 0; i x.Length; i+) Console.Write(0t, xi);【實(shí)例2-11】using System;using System.Windows.Forms;using System.Text;namespace TestString public partial class TestString : Form p

17、rivate void TestString_Load(object sender, EventArgs e) string s; /定義字符串變量 StringBuilder sb = new StringBuilder(); /創(chuàng)建可變字符串對(duì)象 sb.Append(北運(yùn)); /添加字符串 sb.Insert(1, 京奧); /插入字符串 s = sb.ToString(); /把可變字符串對(duì)象轉(zhuǎn)化為字符串 s = s.Insert(s.Length, 2008); lblShow.Text = + s + 長(zhǎng)度為 + s.Length;【實(shí)例2-12】using System;using

18、 System.Windows.Forms;namespace TestIf public partial class TestInterface : Form private void btnOk_Click(object sender, EventArgs e) char c = Convert.ToChar(txtChar.Text); /字符串轉(zhuǎn)換為字符型 if (Char.IsLetter(c) if (Char.IsLower(c) lblShow.Text = 這是一個(gè)小寫(xiě)字母。; else if (Char.IsUpper(c) lblShow.Text =這是大寫(xiě)字母。; e

19、lse lblShow.Text =這是中文字符。; else lblShow.Text =這不是語(yǔ)言文字。;【實(shí)例2-13】using System;class TestSwitch static void Main() Console.WriteLine(服裝類(lèi)別: 1=休閑裝 2=西裝 3=皮衣); Console.Write(請(qǐng)選擇類(lèi)別: ); string s = Console.ReadLine(); int n = Convert.ToInt16(s); /把數(shù)字形式的字符串轉(zhuǎn)化為整型數(shù) int t,cost = 0; /t用來(lái)記錄數(shù)量,cost用來(lái)記錄金額 switch (n)

20、 case 1: Console.Write(休閑裝的套數(shù):); s = Console.ReadLine(); t = Convert.ToInt16(s); cost = t * 150; break; case 2: Console.Write(西裝的套數(shù):); s = Console.ReadLine(); t = Convert.ToInt16(s); cost = t * 300; break; case 3: Console.Write(皮衣的件數(shù):); s = Console.ReadLine(); t = Convert.ToInt16(s); cost = t * 600;

21、 break; default: Console.WriteLine(無(wú)效選擇,請(qǐng)輸入1、2或 3!); break; if (cost != 0) Console.WriteLine(應(yīng)付款0元., cost); Console.WriteLine(謝謝您的惠顧!);【實(shí)例2-14】using System;using System.Windows.Forms;namespace TestWhile public partial class TestWhile : Form public TestWhile() /Visual Studio .Net自動(dòng)生成的構(gòu)造函數(shù) InitializeC

22、omponent(); private void TestWhile_Load(object sender, EventArgs e) int i,sum; i=1; /循環(huán)變量賦初值 sum=0; while(i= A & c = a & c = z) n+; while (c != n); Console.WriteLine(該行中英文字母的個(gè)數(shù)為:0, n); 【實(shí)例2-16】using System;using System.Windows.Forms;namespace TestFor public partial class TestFor : Form public TestFo

23、r() InitializeComponent(); private void TestWhile_Load(object sender, EventArgs e) int i; int t; long s1, s2; s1 = t = 1; /*百萬(wàn)富翁第一天給陌生人的錢(qián)為1分*/ s2 = 100000; /*陌生人第一天給百萬(wàn)富翁的錢(qián)為十萬(wàn)元*/ for (i = 2; i = 30; i+) t = t * 2; /*百萬(wàn)富翁第i天給陌生人的錢(qián)*/ s1 = s1 + t; /*百萬(wàn)富翁第i天后共給陌生人的錢(qián)*/ s2 = s2 + 100000; /*陌生人第i天后共百萬(wàn)富翁的錢(qián)*/ s1 = s1 / 100; /*將百分富翁給陌生人的分幣換成元*/ MessageBox.Show(百萬(wàn)富翁給陌生人+s1+元。n陌生人給百萬(wàn)富翁+s2+元。 );【實(shí)例2-17】using System;class TestForeach static void Main() string names = new string5; Console.WriteLine(請(qǐng)輸入五個(gè)人的姓名:);

溫馨提示

  • 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶(hù)所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶(hù)上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶(hù)上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶(hù)因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

最新文檔

評(píng)論

0/150

提交評(píng)論