下載本文檔
版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、1.設(shè)計(jì)一個(gè) windows 應(yīng)用程序,輸入一個(gè)正整數(shù),逆序打印出每一個(gè)位數(shù)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 windowsformsapplication1public partial class form1 : formpublic form1()initi
2、alizecomponent();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 * 10 + a % 10;a = a / 10;textbox2.text = b.tostring();2. 設(shè)計(jì)一個(gè)簡(jiǎn)單的
3、 windows 應(yīng)用程序,輸入聯(lián)系人的姓名,電話和 email ,單擊“添加”按鈕,顯示聯(lián)系人的相應(yīng)信息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 windowsformsapplication1public partial class form1 : formpubl
4、ic 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.text += 姓名: + ab.name + n + 電話: + ab.phone + n +email: + ab.email + n;
5、private void button2_click(object sender, eventargs e)textbox1.text = ;textbox2.text = ;textbox3.text = ;textbox1.focus();3. 自定義一個(gè)時(shí)間類(lèi)。該類(lèi)包含小時(shí),分,秒字段與屬性,具有將秒增加1 秒的方法using system;using system.collections.generic;using system.componentmodel;using system.data;using system.drawing;using system.linq;using s
6、ystem.text;using system.windows.forms;namespace windowsformsapplication1public partial class form1 : formpublic form1()initializecomponent();private void button1_click(object sender, eventargs e) int hour = int.parse(textbox1.text);int minute = int.parse(textbox2.text);int second = int.parse(textbox
7、3.text);time t = new time(hour, minute, second);t.addsecond();textbox1.text = t.hour.tostring();textbox2.text = t.minute.tostring();textbox3.text = t.second.tostring();private void button2_click(object sender, eventargs e)textbox1.text = ;textbox2.text = ;textbox3.text = ;private void form1_load(obj
8、ect sender, eventargs e)time t = new time();textbox1.text = t.hour.tostring();textbox2.text = t.minute.tostring();textbox3.text = t.second.tostring();4. 設(shè)計(jì)一個(gè) windows 應(yīng)用程序,在該程序中首先構(gòu)造一個(gè)學(xué)生基本類(lèi),再分別構(gòu)造小學(xué)生,中學(xué)生,大學(xué)生等派生類(lèi),當(dāng)輸入相關(guān)數(shù)據(jù),單擊不同按鈕(小學(xué)生,中學(xué)生,大學(xué)生)將分別創(chuàng)建不同的學(xué)生對(duì)象, 并輸入當(dāng)前的學(xué)生總?cè)藬?shù), 該學(xué)生的姓名, 學(xué)生類(lèi)型和平均成績(jī)using system;using s
9、ystem.collections.generic;using system.componentmodel;using system.data;using system.drawing;using system.linq;using system.text;using system.windows.forms;namespace windowsformsapplication1public partial class form1 : formpublic form1()initializecomponent();private void button1_click(object sender,
10、 eventargs e) string name = textbox1.text;int age = int.parse( textbox2.text );double chinese = double.parse( textbox3.text );double math = double.parse( textbox4.text );pupil stu = new pupil(name,age,chinese,math);label6.text += 總?cè)藬?shù): + student.number + , +姓名: + stu.name + , +小學(xué)生 , 平均成績(jī)?yōu)椋?+ stu.aver
11、age() + n;private void button2_click(object sender, eventargs e) string name = textbox1.text;int age = int.parse(textbox2.text);double chinese = double.parse(textbox3.text);double math = double.parse(textbox4.text);double english = double.parse(textbox5.text);middle stu = new middle(name, age, chinese, math,english);label6.text += 總?cè)藬?shù): + student.number + , + 姓名: + stu.name + , +中學(xué)生 , 平均成績(jī)?yōu)椋?+ stu.average() + n;private void button3_click(object sender, eventargs e)string name = textbox1.text;int age = int.parse(textbox2.text);double bixiu = double.parse(textbox3.text);double xuanxiu =
溫馨提示
- 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 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ì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 美菜調(diào)度主管述職報(bào)告
- 初中英語(yǔ)教案反思
- 彩色的象教案反思
- 互聯(lián)網(wǎng)的組成說(shuō)課稿
- 和許多小班說(shuō)課稿
- 書(shū)店安全消防施工合同
- 數(shù)碼俱樂(lè)部會(huì)員停車(chē)場(chǎng)地租賃合同
- 珠寶公司配電房安裝協(xié)議
- 精密儀器顧問(wèn)合同
- 交通樞紐供暖設(shè)備安裝合同
- 第三章 農(nóng)產(chǎn)品市場(chǎng)與價(jià)格zyx
- 新能源汽車(chē)簡(jiǎn)介PPT課件:節(jié)能減排低碳環(huán)保
- 無(wú)砟軌道底座板首件施工總結(jié)(最新)
- 初中英語(yǔ)短語(yǔ)大全(常用短語(yǔ)詞組)
- 新人教版八年級(jí)下冊(cè)英語(yǔ)教案(全冊(cè))
- psv500b硬件手冊(cè)多功能全場(chǎng)掃描式激光
- 東風(fēng)10DD內(nèi)燃調(diào)車(chē)機(jī)車(chē)中修技術(shù)要求
- 倍福TwinCAT ADS通訊-高級(jí)語(yǔ)言
- 液體表面張力系數(shù)測(cè)定實(shí)驗(yàn)設(shè)計(jì)及研究畢業(yè)論文
- 小學(xué)美術(shù)第16課-畫(huà)音樂(lè)ppt課件
- 深基坑開(kāi)挖專(zhuān)項(xiàng)施工方案專(zhuān)家論證版本
評(píng)論
0/150
提交評(píng)論