版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、【精品文档】如有侵权,请联系网站删除,仅供学习与交流c#实例源代码.精品文档.【实例1-1】using System;using System.Collections.Generic;using System.Text;namespace _ class Program static void Main(string args) System.Console.WriteLine(恭喜你,学会了C#编程!); System.Console.ReadLine();【实例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 = 恭喜你学会编程了!;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);【实例2-1】using System;using Syste
3、m.Windows.Forms;namespace TestEnum public partial class TestEnum : Form /Visual Studio .Net自动生成的构造函数,后文示例将全部省略 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 =枚举数x的值为; result += (int)x; /将x转换为整数 result += n枚举数y代表枚举元素 + y; lblShow.Text = result;【实例2-2】using System;using System.Windows.Forms;namespace TestStru public partial class TestStru : Form struct Student /声明结构型 /声明结构型的数据成员 public int no; public string name; public char sex; pu
5、blic int score; /声明结构型的方法成员 public string Answer() string result=该学生的信息如下:; result += n学号: + no; /n为换行符 result += n姓名:+ name; result += n性别:+ sex; result += n成绩:+ score; return result; /返回结果 private void TestEnum_Load(object sender, EventArgs e) Student s; /使用结构型 s.no = 101; = 黄海; s.sex = 男;
6、s.score = 540; lblShow.Text = s.Answer(); /显示该生信息 lblShow.Text += nn+DateTime.Now; /显示当前时间【实例2-3】using System;class TestConstant static void Main(string args) Console.WriteLine(0).GetType(); /有符号的32位整型常量 Console.WriteLine(0U).GetType(); /无符号的32位整型常量 Console.WriteLine(0L).GetType(); /64位的长整型常量 Consol
7、e.WriteLine(0F).GetType(); /32位的浮点型常量 Console.WriteLine(0D).GetType(); /64位的双精度型常量 Console.WriteLine(0M).GetType(); /128位的小数型常量 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();【实例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);【实例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;【实例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; /字符型转整型 float x = 3; x += b; /整型转浮点型 lblShow.Text = a= + a; /整型转为字符串 lblShow.Text += nx= + x; /浮点型转为字符串【实例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;【实例2-8】using System;using System.Windows.Forms;namespace TestInterface public partial class TestInterface : Form interface IStudent /声明接口 string Answer(); class Student : IStudent /声明类,以实现接口 public int no; public string name; public string Answer() string r
13、esult = 该学生信息如下:; result += n学号: + 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();【实例2-9】using System;class HelloWorld public
14、string HelloCN() return 你好!我是Jackson,中国人。; public string HelloEN() return Hi! I am Jackson, a American.;class TestDelegate delegate string MyDelegate(); /声明委托 static void Main(string args) HelloWorld hello = new HelloWorld(); /创建对象 MyDelegate h = new MyDelegate(hello.HelloCN); /创建委托对象并指向一个方法 Console
15、.WriteLine(h(); /通过委托对象调用所指向的方法 h = new MyDelegate(hello.HelloEN); Console.WriteLine(h();【实例2-10】using System;class TestArray static void Main(string args) int x,y; /声明数组 x = new int5 1,5,3,2,4; /初始化数组 y = new int5; Array.Copy(x, y, 5); /将数组x的5个元素复制到数组y中 Console.WriteLine(成功地从数组x复制到数组y,数组y各元素值如下:);
16、for (int i = 0; i y.Length; i+) Console.Write(0t, yi); Array.Sort(x); /将数组x的元素排序 Console.WriteLine(n经过排序后,数组x各元素值如下:); for (int i = 0; i x.Length; i+) Console.Write(0t, xi);【实例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(); /创建可变字符串对象 sb.Append(北运); /添加字符串 sb.Insert(1, 京奥); /插入字符串 s = sb.ToString(); /把可变字符串对象转化为字符串 s = s.Insert(s.Length, 2008); lblShow.Text = + s + 长度为 + s.Length;【实例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); /字符串转换为字符型 if (Char.IsLetter(c) if (Char.IsLower(c) lblShow.Text = 这是一个小写字母。; else if (Char.IsUpper(c) lblShow.Text =这是大写字母。; e
19、lse lblShow.Text =这是中文字符。; else lblShow.Text =这不是语言文字。;【实例2-13】using System;class TestSwitch static void Main() Console.WriteLine(服装类别: 1=休闲装 2=西装 3=皮衣); Console.Write(请选择类别: ); string s = Console.ReadLine(); int n = Convert.ToInt16(s); /把数字形式的字符串转化为整型数 int t,cost = 0; /t用来记录数量,cost用来记录金额 switch (n)
20、 case 1: Console.Write(休闲装的套数:); s = Console.ReadLine(); t = Convert.ToInt16(s); cost = t * 150; break; case 2: Console.Write(西装的套数:); s = Console.ReadLine(); t = Convert.ToInt16(s); cost = t * 300; break; case 3: Console.Write(皮衣的件数:); s = Console.ReadLine(); t = Convert.ToInt16(s); cost = t * 600;
21、 break; default: Console.WriteLine(无效选择,请输入1、2或 3!); break; if (cost != 0) Console.WriteLine(应付款0元., cost); Console.WriteLine(谢谢您的惠顾!);【实例2-14】using System;using System.Windows.Forms;namespace TestWhile public partial class TestWhile : Form public TestWhile() /Visual Studio .Net自动生成的构造函数 InitializeC
22、omponent(); private void TestWhile_Load(object sender, EventArgs e) int i,sum; i=1; /循环变量赋初值 sum=0; while(i= A & c = a & c = z) n+; while (c != n); Console.WriteLine(该行中英文字母的个数为:0, n); 【实例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; /*百万富翁第一天给陌生人的钱为1分*/ s2 = 100000; /*陌生人第一天给百万富翁的钱为十万元*/ for (i = 2; i = 30; i+) t = t * 2; /*百万富翁第i天给陌生人的钱*/ s1 = s1 + t; /*百万富翁第i天后共给陌生人的钱*/ s2 = s2 + 100000; /*陌生人第i天后共百万富翁的钱*/ s1 = s1 / 100; /*将百分富翁给陌生人的分币换成元*/ MessageBox.Show(百万富翁给陌生人+s1+元。n陌生人给百万富翁+s2+元。 );【实例2-17】using System;class TestForeach static void Main() string names = new string5; Console.WriteLine(请输入五个人的姓名:);
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 天津滨海汽车工程职业学院《信号与系统B》2023-2024学年第一学期期末试卷
- 工业版合同范例
- 婚介会员服务合同范例
- 欠款抵车合同范例
- 人事劳动合同范例
- 养殖创业合伙合同范例
- 叠合板生产合同范例
- 建筑沙石采购合同范例
- 展会票务合同范例
- 房屋名称变更合同范例
- 《 人大个案监督制度的实证研究》范文
- 2024年安徽省高校分类考试对口招生语文试卷真题(含答案)
- 2022年江苏省普通高中学业水平测试生物试卷
- 《2024年 《法学引注手册》示例》范文
- 光伏车棚施工方案
- 中华人民共和国职业分类大典是(专业职业分类明细)
- 2024年检察院招录书记员考试法律基础知识及答案
- 国开2024年秋季《形势与政策》大作业答案
- 北师大版四年级上册除法竖式计算题300道及答案
- 2024-2030年中国橡胶伸缩缝行业市场发展趋势与前景展望战略分析报告
- 2021-2022学年内蒙古呼和浩特市高一上学期期末考试英语试题(解析版)
评论
0/150
提交评论