编程课后实验.doc
《编程课后实验.doc》由会员分享,可在线阅读,更多相关《编程课后实验.doc(4页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、【精品文档】如有侵权,请联系网站删除,仅供学习与交流1.2.3.4.5.6.7. 编程课后实验.精品文档.8. 设计一个windows应用程序,输入一个正整数,逆序打印出每一个位数using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace WindowsFormsApplication1
2、 public partial class Form1 : Form public Form1() InitializeComponent(); private void button1_Click(object sender, EventArgs e) textBox1.Text = ; textBox2.Text = ; textBox1.Focus(); private void button2_Click(object sender, EventArgs e) int a = int.Parse(textBox1.Text); int b = 0; while (a 0) b = b
3、* 10 + a % 10; a = a / 10; textBox2.Text = b.ToString();9. 设计一个简单的windows应用程序,输入联系人的姓名,电话和email,单击“添加”按钮,显示联系人的相应信息using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace
4、 WindowsFormsApplication1 public partial class Form1 : Form public Form1() InitializeComponent(); private void button1_Click(object sender, EventArgs e) string name = textBox1.Text; string phone = textBox2.Text; string email = textBox3.Text; AddressBook ab = new AddressBook(name,phone,email); label4
5、.Text += 姓名: + ab.Name + n + 电话: + ab.Phone + n + Email: + ab.Email + n; private void button2_Click(object sender, EventArgs e) textBox1.Text = ; textBox2.Text = ; textBox3.Text = ; textBox1.Focus();10. 自定义一个时间类。该类包含小时,分,秒字段与属性,具有将秒增加1秒的方法using System;using System.Collections.Generic;using System.Co
6、mponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;namespace WindowsFormsApplication1 public partial class Form1 : Form public Form1() InitializeComponent(); private void button1_Click(object sender, EventArgs e) int hour = int.Parse(te
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 编程 课后 实验
限制150内