版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
1、4、分別寫出下列語句執(zhí)行的結(jié)果1) Console.WriteLine(0-0:pgood,12.34F);2) Console.WriteLine(0-0:#good,0);3) Console.WriteLine(0-0:00000good,456);【解答】12.34-1,234.00%good0-good456-00456good5、編寫一個控制臺應(yīng)用程序,輸出 1到 5的平方值,要求:1) 用 for 語句實現(xiàn)。2) 用 while 語句實現(xiàn)。3) 用 do-while 語句實現(xiàn)?!窘獯稹縰sing System;using System.Collections.Generic;us
2、ing System.Text;namespace outputSquareValueclass Programstatic void Main()/用 for 語句實現(xiàn)for (int i = 1; i = 5; i+)Console.WriteLine(0 的平方值為 1, i, i * i);/用 while 語句實現(xiàn)int j = 0;while (j+ 5)Console.WriteLine(0 的平方值為 1, j, j * j);/用 do-while 語句實現(xiàn)int k = 1;doConsole.WriteLine(0 的平方值為 1, k, k * k); while (k
3、+ 5);Console.ReadLine();6、編寫一個控制臺應(yīng)用程序,要求用戶輸入5 個大寫字母,如果用戶輸入的信息不滿足要求,提示幫助信息并要求重新輸入?!窘獯稹縰sing System;using System.Collections.Generic;using System.Text;namespace inputCapitalLetterclass Programstatic void Main()bool ok = false;while (ok = false)Console.Write( 請輸入 5 個大寫字母: );string str = Console.ReadLin
4、e();if (str.Length != 5)Console.WriteLine( 你輸入的字符個數(shù)不是 5 個,請重新輸入。 );elseok = true;for (int i = 0; i 5; i+)char c = stri;if (c Z)Console.WriteLine( 第 0 個字符“ 1 ”不是大寫字母,請重新輸入。 , i + 1, c); ok = false;break;7、編寫一個控制臺應(yīng)用程序,要求完成下列功能。1) 接收一個整數(shù) n。2) 如果接收的值n為正數(shù),輸出1到n間的全部整數(shù)。3) 如果接收的值為負值,用 break 或者 return 退出程序。4
5、) 轉(zhuǎn)到 (1)繼續(xù)接收下一個整數(shù)?!窘獯稹縰sing System;using System.Collections.Generic;using System.Text;namespace testOutputclass Program static void Main()while (true)Console.Write(”請輸入一個整數(shù)(負值結(jié)束):);string str = Console.ReadLine();tryint i = Int32.Parse(str);if (i 0) break;for (int j = 1; j = i; j+) Console.WriteLine
6、(j);catchConsole.WriteLine( 你輸入的不是數(shù)字或超出整數(shù)的表示范圍,請重新輸入 );8、編寫一個控制臺應(yīng)用程序,求1000之內(nèi)的所有“完數(shù)” 。所謂“完數(shù)”是指一個數(shù)恰好等于它的所有因子之和。例如, 6 是完數(shù),因為 6=1+2+3?!窘獯稹縰sing System;using System.Text;namespace completeNumberclass Programstatic void Main(string args)for (int i = 2; i = 1000; i+)int s = 1; string str = 1;for (int j = 2
7、; j = (int)Math.Sqrt(i); j+)if (j * (i / j) = i)if (j != i / j) s += j + i / j;str += string.Format(+0+1, j, i / j);elses += j;str += stri ng.Format(+0, j);if (s = i) Con sole.WriteL in e(0=1, i, str);Con sole.ReadL in e();3、編寫一個控制臺應(yīng)用程序,計算234nXXX(n 1) x1 xL ( 1)(2!3!4!n!要求精度為10-8?!窘獯稹縰sing System;cl
8、ass Test3public static void Mai n()int n = 50;double x = 3;double s = 0;double a = 1;for (int i = 1; i = n; i+)a *= i;s += Math.Pow(-1, i + 1) * Math.Pow(x, i) / a;Co nsole.WriteLi ne( n=0,s=1:0.00000000, n, s);4、 編寫一個控制臺應(yīng)用程序,接收一個長度大于3的字符串,完成下列功能。(1) 輸出字符串的長度。(2) 輸出字符串中第一個出現(xiàn)字母 a的位置。(3) 在字符串的第3個字符后面插
9、入子串“ hello”,輸出新字符串。(4) 將字符串“hello”替換為“ me”,輸出新字符串。(5) 以字符“ m”為分隔符,將字符串分離,并輸出分離后的字符串?!窘獯稹俊窘獯稹縞lass Test4public static void Main()string str = ;while (str.Length -1)Console.WriteLine(第一個出現(xiàn)字母 a的位置是:0, i);elseConsole.WriteLine( 字符串中不包含字母 a。);/(3)string str1 = str.Insert(3, hello);/在第 3 個(初始序號為)字符前插入 hel
10、loConsole.WriteLine( 插入 hello 后的結(jié)果為: 0, str1);/(4)string str2 = str1.Replace(hello, me);Console.WriteLine( 將 hello 替換為 me 后的結(jié)果為: 0, str2);/(5)string arr = str2.Split(m);Console.WriteLine(以m為分隔符分離后的字符串有:”);for (int j = 0; j arr.Length; j+)Console.WriteLine(arrj);1、編寫一個控制臺應(yīng)用程序,完成下列功能。(1)創(chuàng)建一個類,用無參數(shù)的構(gòu)造函
11、數(shù)輸出該類的類名。(2) 增加一個重載的構(gòu)造函數(shù),帶有一個string 類型的參數(shù),在此構(gòu)造函數(shù)中將傳遞的字符串打印出來。(3)在 Main 方法中創(chuàng)建屬于這個類的一個對象,不傳遞參數(shù)。(4)在 Main 方法中創(chuàng)建屬于這個類的另一個對象,傳遞一個字符串“ This is a string.”。(5)在 Main 方法中聲明類型為這個類的一個具有 5 個對象的數(shù)組,但不要實際創(chuàng)建分配到數(shù)組里的對象。(6)寫出運行程序應(yīng)該輸出的結(jié)果?!窘獯稹縞lass Test1public Test1()Console.WriteLine(this);public Test1(string str)Conso
12、le.WriteLine(str);public static void Main()Test1 t1 = new Test1();Test1 t2 = new Test1(This is a string.);Test1 t3 = new Test15;輸出結(jié)果:Test1This is a string.2、編寫一個控制臺應(yīng)用程序,定義一個類MyClass,類中包含有public、private以及protected數(shù)據(jù)成員及方法。然后定義一個從MyClass類繼承的類 MyMain ,將 Main 方法放在 MyMain 中,在 Main 方法中創(chuàng)建 MyClass 類的一個對象,并分別
13、訪問類中的數(shù)據(jù)成員及方法。要求注明在試圖訪問 所有類成員時哪些語句會產(chǎn)生編譯錯誤?!窘獯稹縰sing System;class MyClasspublic int i;private int j;protected int k;public void method1()Console.WriteLine(public method.);private void method2()Console.WriteLine(private method.);protected void method3()Console.WriteLine(protected method.);class MyMain
14、: MyClasspublic static void Main()MyClass t = new MyClass();Console.WriteLine(i=0, t.i);Console.WriteLine(j=0, t.j);/會出現(xiàn)編譯錯誤,私有成員不允許在其它類中訪問Console.WriteLine(k=0, t.k);/會出現(xiàn)編譯錯誤,應(yīng)該創(chuàng)建 MyMain 的對象,然/ 后通過 MyMain 的對象訪問t.method1();t.method2();/ 會出現(xiàn)編譯錯誤,私有的方法不允許在其它類中調(diào)用t.method3();/ 會出現(xiàn)編譯錯誤,應(yīng)該創(chuàng)建 MyMain 的對象,然后
15、通過 MyMain 的/對象調(diào)用該方法protected 數(shù)據(jù)。3、創(chuàng)建一個類包含有 protected 數(shù)據(jù)。在相同的文件里創(chuàng)建第二個類,用一個方法操縱第一個類里的 【解答】using System;class Class1protected int i = 5;protected void MyMethod()Console.WriteLine(protected method.);class Class2 : Class1private void NewMethod()Console.WriteLine(this.i);this.i += 10;Console.WriteLine(thi
16、s.i);public static void Main()Class2 t = new Class2();t.NewMethod();3、編寫一個控制臺應(yīng)用程序,完成下列功能,并回答提出的問題。(1) 創(chuàng)建一個類A,在構(gòu)造函數(shù)中輸出“ A”,再創(chuàng)建一個類B,在構(gòu)造函數(shù)中輸出“ B”。(2) 從A繼承一個名為C的新類,并在C內(nèi)創(chuàng)建一個成員B。不要為C創(chuàng)建構(gòu)造函數(shù)。(3) 在 Main 方法中創(chuàng)建類 C 的一個對象,寫出運行程序后輸出的結(jié)果。(4) 如果在C中也創(chuàng)建一個構(gòu)造函數(shù)輸出“ C”,整個程序運行的結(jié)果又是什么?【解答】using System;public class Apublic A
17、()Console.WriteLine(A);public class Bpublic B()Console.WriteLine(B);public class C : AB newb = new B();class MainClasspublic static void Main()C newc = new C();Console.ReadLine();輸出結(jié)果:BA如果在C中也創(chuàng)建一個構(gòu)造函數(shù)輸出“ C ”,即添加:public C()Console.WriteLine(C);則整個程序運行的結(jié)果為:BAC4、編寫一個控制臺應(yīng)用程序,完成下列功能,并寫出運行程序后輸出的結(jié)果。10后的結(jié)果(
18、1) 創(chuàng)建一個類A,在A中編寫一個可以被重寫的帶int類型參數(shù)的方法MyMethod,并在該方法中輸出傳遞的整型值加(2) 再創(chuàng)建一個類B,使其繼承自類A,然后重寫A中的MyMethod方法,將A中接收的整型值加50,并輸出結(jié)果。(3) 在 Main 方法中分別創(chuàng)建類 A 和類 B 的對象,并分別調(diào)用 MyMethod 方法。【解答】using System;public class Apublic virtual void MyMethod(int num)num += 10;Console.WriteLine(num);public class B : Apublic override v
19、oid MyMethod(int num)num += 50;Console.WriteLine(num);class MainClasspublic static void Main()A newa = new A();newa.MyMethod(2);B newb = new B();newb.MyMethod(2); Console.ReadLine();輸出結(jié)果:12525、假設(shè)Node類的每一個節(jié)點包括有兩個字段:m_data (引用節(jié)點的數(shù)據(jù))和 m_next (引用鏈接列表中的下一項)。這兩個字段都是由構(gòu)造函數(shù)方法設(shè)置的。該類有兩個功能,第一個功能是通過名為 Data和Next的
20、只讀屬性訪問m_data和m_next字段。第二個功能是對 System.Object的ToString 虛擬方法進行重寫。試分別用類和泛型兩種方法編寫程序?qū)崿F(xiàn)上述功能?!窘獯稹縰sing System;class NodeObject m_data;Node m_next;public Node(Object data, Node next)m_data = data;m_next = next;/ 訪問結(jié)點數(shù)據(jù)public Object Dataget return m_data; / 訪問下一個結(jié)點public Node Nextget return m_next; / 獲取結(jié)點數(shù)據(jù)描述
21、public override String ToString()return m_data.ToString();/ 鏈表結(jié)點類的泛型定義class NodeT m_data;Node m_next;public Node(T data, Node next)m_data = data;m_next = next;/ 訪問結(jié)點數(shù)據(jù)public T Dataget return m_data; set m_data = value; / 訪問下一個結(jié)點public Node Nextget return m_next; set m_next = value; / 獲取結(jié)點數(shù)據(jù)描述public
22、override String ToString()return m_data.ToString();/ 使用結(jié)點類型或泛型結(jié)點類型class LinkedListstatic void Main(string args)/ 創(chuàng)建整數(shù)鏈表/Node head = new Node(5, null);/head = new Node(10, head);/head = new Node(15, head);/遍歷鏈表求整數(shù)和lnt32 sum = 0;/for (Node current = head; current != null;/ current = current.Next)/ sum
23、 += (Int32)current.Data;/輸岀結(jié)果Console.WriteLine(Sum of nodes = 0, sum);/用泛型創(chuàng)建整數(shù)鏈表Node head = new Node(5, null);head = new Node(10, head);head = new Node(15, head);/遍歷求和Int32 sum = 0;for (Node current = head; current != null;current = current.Next)sum += current.Data;/輸出Co nsole.WriteL in e(Sum of nod
24、es = 0, sum.ToStri ng();4、設(shè)計一個 Windows應(yīng)用程序,窗體上有一個 TextBox控件、一個 Button控件。要求:每當用戶單擊按鈕時,文本框都會增加一行文字來反映 單擊的次數(shù),例如,“第3次單擊按鈕”?!窘獯稹?)窗體界面如圖6-1所示;控件Name屬性功能其它屬性TextBox 控件textBox1顯示信息ScrollBars=Vertical; Multiline=TrueButton控件Butt on1觸發(fā)添加信息事件Button2觸發(fā)結(jié)束添加事件2)窗體中主要控件屬性設(shè)置如表6-1;表6-1窗體中的主要控件屬性3)主要事件代碼int i = 1;bo
25、ol Add = true;private void butt on 1_Click(object sen der, Even tArgs e) if(Add) textBox1.Text +=第+ i + 次單擊按鈕 rn; i+;private void butt on 2_Click(object sen der, Even tArgs e)圖6-1窗體界面Add = false;5、編寫一段程序,向名為listBox1的ListBox控件中,自動添加10個隨機數(shù),每個數(shù)占一項。解答】主要代碼如下。public partial class Form1 : Form int m = 1;p
26、rivate void button1_Click(object sender, EventArgs e)for (int i = m ; i m+10; i+) listBox1.Items.Add(i); m = m + 10; 2、編寫程序用 Directory 類提供的方法確定指定的目錄是否存在,如果不存在,則創(chuàng)建該目錄。然后在其中創(chuàng)建一個文件,并將一個字符串寫到文 件中?!窘獯稹砍绦蚯鍐稳缦拢簎sing System;using System.IO;class Testpublic static void Main()string path = c:MyDir;tryif (!Dir
27、ectory.Exists(path)Directory.CreateDirectory(path);StreamWriter sw=File.CreateText(path+myfile.txt);sw.WriteLine(This is a String!);sw.close();catch (Exception e)Console.WriteLine( 操作失敗 : 0, e.ToString();finally 3、編寫程序,使用 File 類實現(xiàn)刪除指定目錄下的指定文件?!窘獯稹砍绦蚯鍐稳缦拢簎sing System;using System.IO;class FileTestpub
28、lic static void Main()Console.WriteLine( 確認刪除當前目錄下的所有文件 ?);Console.WriteLine(”點擊Y鍵繼續(xù),其它鍵取消操作”);int a = Console.Read();if(a = Y | a = y)Console.WriteLine( 正在刪除文件 .);elseConsole.WriteLine( 用戶取消操作 );return;Directory Info dir = new Directory Info (.);foreach (FileInfo f in dir.GetFiles()f.Delete();2、使用
29、Panel 控件分別以矩形、橢圓和圓形的方式動態(tài)顯示圖片,圖片的大小由 Panel 控件的大小決定?!窘獯稹?1) 新建一個 Windows應(yīng)用程序,命名為“ ShowImageExe”,調(diào)整窗體到適當大小。更改“Form1.cs”為“ FromShowlmageExe.cs”。(2) 切換到代碼方式,添加名稱空間引用:using System.Drawing.Drawing2D;添加四個 Button 控件分別命名為“ buttonOpenFile”、“buttonRectangle”、“buttonEllipse”、“buttonRound”,以及一個 openFileDiolog 禾廿
30、Panel控件在Form類下聲明兩個私有變量filename和flag,分別用來記錄打開的文件名和判斷哪個按鈕的 click時間被觸發(fā)。private string filename = ;private int flag = 0;(5) 添加【打開文件】按鈕的 click 事件private void buttonOpenFile_Click(object sender, EventArgs e)openFileDialog1.ShowDialog();filename = openFileDialog1.FileName;panel1.Refresh();(6) 在 panel1 控件的
31、paint 事件下添加如下代碼:private void panel1_Paint(object sender, PaintEventArgs e)if (filename.Trim() = )return;Bitmap mybitmap = new Bitmap(filename);Graphics g = e.Graphics;TextureBrush mybrush = new TextureBrush(mybitmap,WrapMode.Clamp);/保證圖片完全由繪制對象的邊框決定switch (flag)case 1:g.FillRectangle(mybrush, panel1
32、.ClientRectangle);break;case 2:g.FillEllipse(mybrush, panel1.ClientRectangle);break;case 3: g.FillEllipse(mybrush,(panel1.Width-panel1.Height)/2,0, panel1.Height,panel1.Height); break;(7) 在其他幾個按鈕的 click 事件中分別添加如下代碼:private void buttonRectangle_Click(object sender, EventArgs e)flag = 1;panel1.Refresh
33、();private void buttonEllipse_Click(object sender, EventArgs e)flag = 2;pan el1.Refresh();private void butt onRoun d_Click(object sen der, Even tArgs e) flag = 3;pan el1.Refresh();(8) 結(jié)果如圖所示。第2題以矩形、橢圓和圓形的方式顯示圖片運行 圖3、編寫一個 Windows窗體應(yīng)用程序,利用 PictureBox控件和Panel控件實現(xiàn)滾動瀏覽大圖片的功能?!窘獯稹坑捎赑icturebox控件在顯示圖片時不能直接使
34、用滾動條,所以必須借助Panel控件實現(xiàn)以滾動條的方式瀏覽大圖片。具體操作步驟如下:(1) 新建一個 Windows應(yīng)用程序,命名為“ scrollBar”,調(diào)整窗體到適當大小。更改“ Form1.cs”為“ FormScrollBar.cs”。(2) 切換到代碼方式,添加名稱空間引用:using System.Drawing.Drawing2D;在窗體上分別添加一個 button控件命名為“buttonOpenFile”,一個openFileDiolog控件,Picturebox和Panel控件各一個,將Panel控件的AutoScroll 屬性設(shè)為true。 在“ buttonOpenFi
35、le”控件的click事件中添加如下代碼:private void buttonOpenFile_Click(object sender, EventArgs e)openFileDialog1.ShowDialog();if (openFileDialog1.FileName.Trim()=)return;tryBitmap mybitmap = new Bitmap(openFileDialog1.FileName);pictureBox1 .Im age = mybitmap;catch (Exception Err)MessageBox.Show(“打開文件錯誤!,信息提示, Mess
36、ageBoxButtons.OK, MessageBoxIcon.Information);(5)結(jié)果如圖所示4、編寫一個 Windows窗體應(yīng)用程序,實現(xiàn)對圖片進行旋轉(zhuǎn)、縮放和平移的功能?!窘獯稹?1)在窗體上添加六個label控件供中l(wèi)abell用來顯示圖片)、一個button控件(用于打開圖片文件)和五個numericUpDown控件(分別用來選擇圖片縮放的比例、圖片旋轉(zhuǎn)的角度、圖片位移的大小)(2)在構(gòu)造函數(shù)上方添加代碼:private string strfilename=;(3) 在button控件的click事件里添加如下代碼:private void button1_Click
37、(object sender, EventArgs e)openFileDialog1.ShowDialog();strfilename=openFileDialog1.FileName; label1.Refresh();在每一個numericUpDown控件的ValueChanged事件中添加如下代碼:label1.Refresh();(5)在labell控件的paint事件中添加如下代碼:private void label1_Paint(object sender, PaintEventArgs e) if (this.strfilename.Trim()=)return ;tryBi
38、tmap mybitmap = new Bitmap(strfilename);Graphics g = e.Graphics;TextureBrush mybrush = new TextureBrush(mybitmap);float x = (float)(numericUpDownS1.Value / 100);float y = (float)(numericUpDownS2.Value / 100);mybrush.ScaleTransform(x, y);g.FillRectangle(mybrush, 0, 0, ClientRectangle.Width, ClientRec
39、tangle.Height);float r = (float)(numericUpDownR1.Value);mybrush.RotateTransform(r);g.FillRectangle(mybrush, 0, 0, ClientRectangle.Width, ClientRectangle.Height);float tx = (float)(numericUpDownT1.Value);float ty = (float)(numericUpDownT2.Value);mybrush.TranslateTransform(tx, ty); catch(Exception Err
40、)g.FillRectangle(mybrush, 0, 0, ClientRectangle.Width, ClientRectangle.Height);MessageBox.Show(“打開文件錯誤!,信息提示,MessageBoxButtons.OK, MessageBoxIcon.Information);1、使用保持連接方式編寫程序,計算各年級平均成績,并顯示結(jié)果?!窘獯稹縰sing System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.D
41、rawing;using System.Text;using System.Windows.Forms;using System.Data.SqlClient;namespace 習(xí)題 9_1public partial class Form1 : Formpublic Form1()InitializeComponent();/ 添加 Button 按鈕在 ListBox 中顯示結(jié)果private void button1_Click(object sender, EventArgs e) listBox1.Items.Add( 年級 平均成績 );string connectionStri
42、ng = Properties.Settings.Default.MyDatabaseConnectionString; /根據(jù)連接字符串創(chuàng)建 SqlConnection 實例SqlConnection conn = new SqlConnection(connectionString);創(chuàng)建SqlCommand實例,并設(shè)置SQL語句和使用的連接實例SqlCommand cmd = new SqlCommand();cmd.CommandText = select substring(學(xué)號,1,2) as 年級,avg(成績)as 平均成績 from MyTable2 group by sub
43、string(學(xué)號,1,2); cmd.Connection = conn;tryconn.Open();SqlDataReader r = cmd.ExecuteReader();while (r.Read() = true)listBox1.Items.Add(string.Format(0 級1, r0, r1);r.Close();catch (Exception err)MessageBox.Show(err.Message, 計算成績失敗 );finallyconn.Close();2、使用保持連接方式編寫程序,查詢MyTable2 中不及格學(xué)生的學(xué)號、姓名、性別和成績。并將結(jié)果在
44、 ListBox 中顯示出來。【解答】using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Data.SqlClient;namespace 習(xí)題 9_2public partial class Form1 : Formpublic Form1()InitializeComponent();private vo
45、id button1_Click(object sender, EventArgs e)listBox1.Items.Add( 學(xué)號 姓名 性別 成績 );string connectionString = Properties.Settings.Default.MyDatabaseConnectionString; /根據(jù)連接字符串創(chuàng)建 SqlConnection 實例SqlConnection conn = new SqlConnection(connectionString);創(chuàng)建SqlCommand實例,并設(shè)置SQL語句和使用的連接實例SqlCommand cmd = new SqlC
46、ommand();cmd.CommandText =Select 學(xué)號,姓名,性別, 成績 From MyTable2 Where (成績60);cmd.Connection = conn;tryconn.Open();SqlDataReader r = cmd.ExecuteReader();while (r.Read() = true)listBox1.Items.Add( string.Format(0123, r0, r1, r2, r3);r.Close();catch (Exception err)MessageBox.Show(err.Message, 查詢成績失敗 );fina
47、llyconn.Close();3、編寫程序,以“ 編碼 名稱”的樣式在 comboBox1 中顯示 MyTable1 的內(nèi)容。 【解答】 using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Data.SqlClient;namespace 習(xí)題 9_3public partial class Form1 :
48、 Formpublic Form1()InitializeComponent();private void Form1_Load(object sender, EventArgs e)string connectionString = Properties.Settings.Default.MyDatabaseConnectionString; /根據(jù)連接字符串創(chuàng)建 SqlConnection 實例SqlConnection conn = new SqlConnection(connectionString);創(chuàng)建SqlCommand實例,并設(shè)置SQL語句和使用的連接實例SqlCommand
49、cmd = new SqlCommand();cmd.CommandText = Select * From MyTable1;cmd.Connection = conn;tryconn.Open();SqlDataReader r = cmd.ExecuteReader(); while (r.Read() = true) comboBox1.Items.Add(string.Format(0 1, r0, r1); comboBox1.SelectedIndex = 0;r.Close();catch (Exception err)MessageBox.Show(err.Message,
50、顯示數(shù)據(jù)失敗 );finallyconn.Close();18 的所有紀4、已知數(shù)據(jù)庫 MyDb.mdf 中定義了一張 person 表,表中有一個“年齡”字段,編寫存儲過程并調(diào)用存儲過程顯示該數(shù)據(jù)表中年齡大于 錄?!窘獯稹縰sing System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Data.SqlClient;namespace 習(xí)題 9_4public partial class Form1 : Formpublic Form1()InitializeComponent();private void button1_Click(object sender, EventArgs e)string connectionstring = Properties.Settings.Default.MyDatabaseConnectionString ;SqlConnection conn = new SqlConnection(connectionstrin
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 二零二五年度公司股權(quán)轉(zhuǎn)讓退股協(xié)議3篇
- 二零二五年度時尚博主與模特合作拍攝合同3篇
- 2025年度大型橋梁加固工程合同終止與監(jiān)測服務(wù)續(xù)約協(xié)議3篇
- 二零二五年度鄉(xiāng)村旅游用地流轉(zhuǎn)承包合同書3篇
- 2025年度消防安全設(shè)施運行維護管理合同3篇
- 2025年度智能物流倉儲合作全新簽約協(xié)議模板3篇
- 2025年度國有企業(yè)股權(quán)轉(zhuǎn)讓協(xié)議書3篇
- 二零二五年度現(xiàn)代農(nóng)業(yè)土地承包權(quán)流轉(zhuǎn)及項目合作協(xié)議3篇
- 二零二五年度職業(yè)體育團隊兼職教練員聘用協(xié)議3篇
- 二零二五年度養(yǎng)殖場市場營銷用工合同3篇
- 色彩基礎(chǔ)知識ppt
- 加油站冬季安全教育
- 第二章航空燃氣輪機的工作原理
- 推板式造波機的機械結(jié)構(gòu)設(shè)計
- SAPHR快速指南
- 廣東海洋大學(xué)大數(shù)據(jù)庫課程設(shè)計
- (完整版)食堂管理制度及流程
- 某醫(yī)院后備人才梯隊建設(shè)方案
- 二年級上冊英語教案Unit6 Lesson22︱北京課改版
- 桂枝加龍骨牡蠣湯_金匱要略卷上_方劑加減變化匯總
- 電機與電氣控制技術(shù)PPT課件
評論
0/150
提交評論