版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
第一章:習(xí)題一、習(xí)題二
usingSystem;usingSystem.Collections.Generic;namespaceWindowsFormsApplication2
usingSystem.Linq;usingSystem.Text;publicForm1(){InitializeComponent();}
namespaceConsoleApplication1privatevoidbutton1_Click(objectsender,
EventArgse)
{classProgram{label1.Font=newFont(“華文彩云”,80);
{staticvoidMain(string[]args)label1.ForeColor=System.Drawing.Color.Blue;
{Console.WriteLine(nHelloWorld!");button1.Enabled二false;}}}
Console.Read();
}}
})
第二章習(xí)題二
privatevoidbuttonl_Click(objectsender,EventArgse){
Strings,a;
s=Convert.ToString(textBoxl.Text);
a=s.ToUpper();
textBoxl.Text=a.ToStringO;}
privatevoidbutton2_Click(objectsender,EventArgse){
Strings,a;s=Convert.ToString(textBox1.Text);
a=s.ToLower();textBox1.Text=a.ToStringO;
}))
習(xí)題六
privatevoidbuttonl_Click(objectsender,EventArgse)
{stringa;a=Convert.ToString(textBox1.Text);
MessageBox.Show(Converl.ToString(a)+,\歡迎進(jìn)入C#的世界!”歡迎進(jìn)入C#的世界!”,
MessageBoxButtons.OK,MessageBoxIcon.Information);}
習(xí)題三
privatevoidbuttonl_Click(objectsender,EventArgse)
(
inta,b,c,d,x;
x=Convert.ToInt32(textBox1.Text);
a=x/1000;
b=x/100-a*10;
c=x/10-a*100-b*10;
d=x%10;
textBox2.Text=Convert.ToString(a);
textBox3.Text=Convert.ToString(b);
textBox4.Text=Convert.ToString(c);
textBox5.Text=Convert.ToString(d);
)
習(xí)題四銀行貸款的月還額
privatevoidbuttonl_Click(objectsender,EventArgse)
doublep,r,a,b;
intn;
p=Convert.ToDouble(textBox1.Text);
r=Convert.ToDouble(textBox2.Text);
n=Convert.ToInt32(textBox3.Text);
b=Math.Pow((l+r),n);
a=p*r*b/(b-1);
textBox4.Text=a.ToString(".##");
習(xí)題五、隨機(jī)數(shù)
privatevoidbuttonl_Click(objectsender,EventArgse)
{Randomintra=newRandom();inta=intra.Next(l,101);
charb=(char)a;textBoxl.Text=Convert.ToString(a);
textBox2.Text=Convert.ToString(b);}
第三章
習(xí)題二是否是閏年
privatevoidbutton1_Click(objectsender,EventArgse)
inta;
a=Convert.ToInt32(textBoxl.Text);
if(a%4==0&&a%100!二0||a%400==0)
label2.Text="閏年";
else
label2.Text="不是閏年”;
習(xí)題三一元二次方程組
privatevoidbuttonl_Click(objectsender,EventArgse){
inta,b,c;doublex;
a=Conveil.ToInt32(textBox1.Text);b=Convert.ToInt32(textBox2.Text);
c二Convert.ToInt32(textBox3.Text);x=Math.Pow(b,2);
if(a==0)
abe14.Text="不是一元二次方程";
else{if(x-4*a*c==0)label4.Text="有兩個(gè)相等的實(shí)根”;
elseif(x-4*a*c>0)label4.Text="有兩個(gè)不等的實(shí)根”;
elselabel4.Text="無(wú)解";}}
習(xí)題四
privatevoidbutton1_Click(objectsender,EventArgse)
(
doublea,b,c,m,s;
a=Convert.ToDouble(textBox1.Text);
b=Convert.ToDouble(textBox2.Text);
c=Convert.ToDouble(textBox3.Text);
m=(a+b+c)/2;
if(a>0&&b>0&&c>0)
(
if(a+b>c&&a+c>b&&b+c>a)
(
s=Math.Sqrt(m*(m?a)*(m-b)*(m?c));
label4.Text二"三角形面積為”+s;
)
else
(
MessageBox.Show(n輸入錯(cuò)誤",”提示n,MessageBoxButtons.OK,
MessageBoxIcon.Exclamation);
label4.Text=,M,;}}
else{MessageBox.Show("輸入錯(cuò)誤","提示",MessageBoxButtons.OK,
MessageBoxIcon.Exclamation);
labe14.Text二}}
習(xí)題一、
privatevoidbutton1_Click(objectsender,EventArgse)
(
inta,b,c,max,min;
a=Convert.ToInt32(textBoxl.Text);
b=Convert.ToInt32(textBox2.Text);
c=Convert.ToInt32(textBox3.Text);
max=(a>b?a:b)>c?(a>b?a:b):c;
min=(a<b?a:b)<c?(a<b?a:b):c;
b=a+b+c?max-min;
label5.Text=max+”,"+b+”,"+min;
第四章習(xí)題三
privatevoidbutton1_Click(objectsender,EventArgse)
{ints=0;
for(inti=l;i<=100;i++)
for(intj=0;j<=i;j++)
{s=s+j;}
textBoxl.Text=Convert.ToString(s);
privatevoidbuttonl_Click(objectsender,EventArgse)
(
ints=0,u=0;
for(inti=1;i<=100;i++)
(
u=u+i-l;
s=s+u+i;
)
textBoxl.Text=Converl.ToString(s);
習(xí)題五、3和7的倍數(shù)
privatevoidbuttonl_Click(objectsender,EventArgse)
(
for(inti=1;i<=100;i++){
if(i%3==0&&i%7==0)
textBoxl.Text二
textBoxl.Text+”\r\n"+Convert.ToString(i);}
習(xí)題一
privatevoidbuttonl_Click(objectsender,EventArgse)
(
ints=0;
for(inti=l;i<=100;i++){
s=s+i;
}
textBoxl.Text=Convert.ToString(s)
第五章習(xí)題六
privatevoidbuttonl_Click(objectsender,EventArgse)
{int[]a;inti,n;
n二Convert.ToInt32(textBox1.Text);
BestPersonf=newBestPerson();f.getBestPosition(n,outa);
for(i=0;i<n;i++)
textBox3.Text=textBox3.Text+Convert.ToString(a[i]);}
publicpartialclassBestPerson{
publicvoidgetBestPosition(inta,outint[]s)
{s=newint[50];inti,j=-1,k;
for(i=0;i<a;i++){s[i]=0;}
for(i=1;iv=a;i++)
{k=0;
do{j++;if(j=a)j=0;if(s[j]==0)k++;
}while(k!=7);
s[j]=i;
})
第五章習(xí)題八
privatevoidbuttonl_Click(objectsender,EventArgse)
(
Students=newStudent();
MasterStudentm=newMasterStudent();
m.Age=Convert.ToInt32(textBox2.Text);
m.Name=textBoxl.Text;
m.Number=textBox4.Text;
m.Sex二textBox3.Text;
m.Major=textBox5.Text;
m.Teacher=textBox6.Text;
if(m.UpdateAge(m.Age))
m.sayHallo();
elseMessageBox.Show("年齡有錯(cuò)!)
publicclassStudent
{privatestringnumber;publicstringNumber
{get{returnnumber;}
set{number=value;}}
privatestringname;publicstringName
{get{returnname;}set{name=value;}}
privatestringsex;
publicstringSex{get{returnsex;}set{sex=value;}
privateintage;
publicintAge{get{returnage;}set{age=value;}}
publicBooleanUpdateAge(inta){
if(a>0&&a<=120){age=a;returntrue;}
else
returnfalse;}
publicvoidsayHallo(){
MessageBox.Show("我是一名學(xué)生,我的名字是:n+Name.ToStringO+年齡:
”+Age.ToStringO+”,性別:”+Sex.ToStringO+“,學(xué)號(hào):"+Number.ToStringO);}}
publicclassMasterStudent:Student{
publicstringMajor;
publicstringTeacher;
publicnewvoidsayHallo(){
MessageBox.Show("我是一名研究生,我的名字是:"+Name.ToStringO+年齡:”+
Age.ToStringO+\性別:”+Sex.ToStringO+”,學(xué)號(hào):n+Number.ToStringO+",方向:
“+Major+”,指導(dǎo)老師"+Teacher);}}}
習(xí)題5
intfac(intn){if(n>0){
if(n==1)return(1);
elsereturn(n*fac(n-1));}
elsereturn1;}
privatevoidbuttonl_Click(objectsender,EventArgse)
{intn,s;
n=Convert.ToInt32(textBox1.Text);
s=fac(n);
textBox2.Text二Convert.ToString(s);}
}
)
第六章習(xí)題七
privatevoidbuttonl_Click(objectsender,EventArgse)
(
inti;party[]p=newparty[3];
partypl=newparty。;communistPartyp2=newcommunistPartyO;
kuomintangp3=newkuoinintangO;
p[O]=pl;p[l]=p2;p[2]=p3;
for(i=0;i<3;i++)
p[i].sayPolicy();}}
publicclassparty
{publicvirtualvoidsayPolicyO{
MessageBox.Show("兩岸同屬于一個(gè)中國(guó)?!?;
})
publicclasscommunistPai'ty:party{
publicoverridevoidsayPolicyO{
MessageBox.Show("兩岸同屬于一個(gè)中國(guó),用一國(guó)兩制統(tǒng)一中國(guó)。");
})
publicclasskuomintang:party{
publicoverridevoidsayPolicy(){
MessageBox.Show("兩,同屬于一個(gè)中國(guó),用三民主義統(tǒng)一中國(guó)。");)
})
privatevoidbuttonl_Click(objectsender,EventArgse)
{Catc=newCat();=textBoxl.Text;
Mousem=newMouse();=textBox2.Text;
c.getUp十=newsayGetUpDelegate(m.sayGetUp);
c.crow();}}
習(xí)題八
publicdelegatevoidsayGetUpDelegate();
publicclassCat
(
publiceventsayGetUpDelegategetUp;
publicstringname;
publicvoidcrow()
(
Messag6Box.Show(name+”口芮?啼?啼?口帝?噴?噴?”);
getUp();
)
)
publicclassMouse
(
publicstringname;
publicvoidsayGetUp()
(
MessageBox.Show(name+"快跑!!!!");
習(xí)題九
privatevoidbutton1_Click(objectsender,EventArgse)
{traint=newtrain();=textBoxl.Text;
catc=newcat();=textBox2.Text;
c.h=Convert.ToInt16(textBox3.Text);
t.nshow();c.nshow();}
privatevoidbutton2_Click(objectsender,EventArgse)
{traint=newtrain();
catc=newcat();
t.shout();
c.shout();}}
publicinterfacemakeVoice{inth{get;set;}voidshout();}
publicabstractclassVehicle{publicstringname;publicabstractvoidnshow();}
publicabstractclassAnima{publicstringname;publicabstractvoidnshow();}
publicclasstrain:Vehicle,makeVoice{intH;publicinth
{get{returnthis.H;}set{this.H=value;}}
publicoverridevoidnshow(){MessageBox.Show("train的名字是”+name);}
publicvoidshout(){MessageBox.Show(”train"+”嗚嗚嗒嗒。。。…嗚嗚嗒嗒)}}
publicclasscat:Aniinal,makeVoice{intH;
publicinth{
get{returnthis.H;}
set{this.H=value;}}
publicoverridevoidnshow(){
MessageBox.Show(ncatfi\J^^^"+name+,,^j^^',+h);)
publicvoidshout(){
MessageBox.Show(“cat"+"哺唯瞄。?!Nㄠ粥?);}}}
第七章習(xí)題一
隨機(jī)產(chǎn)生10個(gè)兩位整數(shù),找出其中最大值,最小值、高于平均數(shù)的數(shù)
privatevoidbuttonl_Click(objectsender,EventArgse){
intsum=0;intz;Randomra=newRandom();
int[]a=newint[10];
for(inti=0;i<a.Length;i++){a[i]=ra.Next(10,100);}
z,
for(inti=0;i<a.Length;i++){textBoxl.Text十二Convert.ToString(a[i]+")};
for(inti=0;i<a.Length;i++){sum+二a[i]};
z=sum/10;
textBox4.Text=Convert.ToString(z)
for(inti=0;i<a.Length;i++)
(
if(a[i]>=z)
(
textBox5.Text+=Convert.ToString(a[i]+〃);
)
}Array.Sort(a);
textBox2.Text二Convert.ToString(a[9]);
textBox3.Text=Convert.ToString(a[0]);}
產(chǎn)生10個(gè)學(xué)生的成績(jī),并用冒泡進(jìn)行排序
privatevoidbuttonlClick(objectsender,EventArgse){
Randomra=newRandom();
int[]a=newint[10];
for(inti=0;i<a.Length;i++){a[i]=ra.Next(1,100);
textBoxl.Text+二Convert.ToString(a[i]+"〃);}
for(inti=0;i<a.Length-1;i++)
{for(intj=i+1;j<a.Length;j++)
{if(a[i]<a[j])
{intt;t=a[i];a[i]=a[j];a[j]=t;}}}
for(inti=0;i<a.Length;i++)
{textBox2.Text+=Convert.ToString(a[i]+〃〃);}}
交錯(cuò)數(shù)組
privatevoidbuttonl_Click(objectsender,EventArgse)
(
int[][]jcArray=newint[4][];
jcArrayfO]=newint[]{1,32,89,6,8};
jcArray[l]=newint[]{2,17,8};
jcArray[2]=newint[]{3,5};
jcArray[3]=newint[]{4,9,23,12);
textBoxl.Text=”交錯(cuò)數(shù)組的數(shù)據(jù):"+"\r\n”;
foreach(intf]jinjcArray)
(
intx=0;
foreach(intiinj)
{
x+=i;
textBoxl.Text+=Convert.ToString(i)+n\tn;
)
textBoxl.Text+="\r\n"+”該行數(shù)據(jù)總和為:
n+Convert.ToString(x)+"\r\nH;
}}}}
用二維數(shù)組存儲(chǔ)學(xué)生成績(jī)
privatevoidbuttonl_Click(objectsender,EventArgse)
(
int[,]cj={{1001,93},{1004,78},{1002,59},{1005,87},{2001,55}};
textBoxl.Text=〃學(xué)生成績(jī)〃;
for(inti=0;i<cj.GetLength(0);i++)
for(intj=0;j<cj.GetLength(1);j++)
{if(j=1)
textBoxl.Text=textBoxl.Text+〃\t〃+Convert.ToString(cj[i,j]);
elsetextBoxl.Text=textBoxl.Text++Convert.ToString(cj[i,j]);
textBoxl.Text=textBoxl.Text+〃\r\n〃+〃不及格的學(xué)生”;
for(inti=0;i<cj.GetLength(O);i++)
if(cj[i,1]<60)
textBoxl.Text=textBoxl.Text+〃\r\n〃+Convert.ToString(cj[i,0])+
,z\t/z+Convert.ToString(cj[i,1])
textBoxl.Text+=〃\r\rT+〃平均成績(jī)〃;
intsum=0;intz;;
for(inti=0;i<cj.GetLength(O);i++)
{sum+=cj[i,1];}
z=sum/cj.GetLength(O);
textBoxl.Text+=Convert.ToString(z);}}}
第十章
簡(jiǎn)易文本編輯器
privatevoidbuttonl_Click(objectsender,EventArgse)
(
richTextBoxl.Text=〃〃;
)
privatevoidbutton2_Click(objectsender,EventArgse)
(
openFileDialogl.FileName=〃〃;
openFileDialogl.ShowReadOnly=true;
openFileDialogl.ReadOnlyChecked=true;
openFileDialogl.Filter=text|text|RTF文件(*.rtf)|rtf〃;
if(openFileDialogl.ShowDialogO==DialogResult.OK)
richTextBoxl.LoadFi1e(openFi1eDialog1.FileName,
RichTextBoxStreamType.RichText);
)
privatevoidbutton3_Click(objectsender,EventArgse)
(
saveFi1eDialog1.InitialDirectory=
saveFileDialogl.Filter=〃*.texttext|RTF文件(*.rtf)*.rtf”;
if(saveFileDialogl.ShowDialogO==DialogResult.OK)
richTextBoxl.SaveFile(saveFileDialogl.FileName,
RichTextBoxStreamType.RichText);
)
privatevoidbutton4_Click(objectsender,EventArgse)
(
fontDialogl.ShowApply=true;
if(fontDialogl.ShowDialogO==DialogResult.OK)
richTextBoxl.Font=fontDialogl.Font;
privatevoidbutton5_Click(objectsender,EventArgse)
{
colorDialogl.ShowHelp=true;
if(colorDialogl.ShowDialogO==DialogResult.OK)
richTextBoxl.SelectionColor=colorDialogl.Color;
)
privatevoidForml_Load(objectsender,EventArgse)
(
)
}
)
第H^一章
通訊錄(數(shù)據(jù)庫(kù))
OleDbConnectionmConn=newOleDbConnectionO;
OleDbDataAdaptermAdapter;
01eDbCommandBui1dermBuilder;
DataTablemDatatable=newDataTable();
intmRowposition=0;
privatevoidshowRecord()
(
if(mDatatable.Rows.Count==0)
{
textBoxl.Text=〃〃;
textBox2.Text=〃〃;
textBox3.Text=〃〃;
textBox4.Text=〃〃;
textBox5.Text=〃〃;
)
textBoxl.TextmDatatable.Rows[mRowposition][〃編號(hào)
ToStringO;
textBox2.TextmDatatable.Rows[mRowposition][〃姓名
〃]?ToStringO;
textBox3.TextmDatatable.Rows[mRowposition][〃性別
ToStringO;
textBox4.TextmDatatable.Rows[mRowposition][〃籍貫
〃]?ToStringO;
textBox5.TextmDatatable.Rows[mRowposition][〃電話
〃].ToStringO;
)
publicForml0
InitializeComponent();
privatevoidlabell_Click(objectsender,EventArgse)
privatevoidForml_Load(objectsender,EventArgse)
(
mConn.ConnectionString=@,zProvider
=Microsoft.Jet.OLEDB.4.0;DataSource=F:\新建文件夾\1208150129林相玲(12)\
通訊錄.mdb〃;
mConn.Open();
mAdapter=newOleDbDataAdapter(,zselect*from通訊錄〃,mConn);
mBuilder=newOleDbCommandBuiIder(mAdapter);
mAdapter.Fill(mDatatable);
this.showRecord();
)
privatevoidForml_FormClosing(objectsender,FormClosingEventArgse)
(
mConn.Close();
mConn.Dispose();
)
privatevoidlabel5_Click(objectsender,EventArgse)
(
)
privatevoidbuttonl_Click(objectsender,EventArgse)
{
mRowposition=0;
this.showRecord();
}
privatevoidbutton2_Click(objectsender,EventArgse)
(
if(mRowposition<mDatatable.Rows.Count-1)
(
mRowposition=mRowposition+1;
this.showRecord();
)
)
privatevoidbutton3_Click(objectsender,EventArgse)
(
if(mRowposition!=0)
mRowposition=mRowposition-1;
this.showRecord();
}
privatevoidbutton4_Click(objectsender,EventArgse)
if(mDatatable.Rows.Count!=0)
mRowposition=mDatatable.Rows.Count-1;
this.showRecord();
)
privatevoidbutton5_Click(objectsender,EventArgse)
(
if(button5.Text==〃添加〃)
{
button5.Text=〃確認(rèn)添加〃;
textBoxl.Text=〃〃;
textBox2.Text=〃〃;
textBox3.Text=〃〃;
)
else
(
button5.Text=〃添加〃;
DataRowmNewrow=mDatatable.NewRowO;
mNewrow[”編號(hào)〃]=textBoxl.Text;
mNewrow[〃姓名〃]=textBox2.Text;
mNewrow[〃電話號(hào)碼〃]=textBox3.Text;
mDatatable.Rows.Add(mNewrow);
mAdapter.Update(mDatatable);
mRowposition=mDatatable.Rows.Count-1;
this.showRecord();
)
}
privatevoidbutton6_Click(objectsender,EventArgse){
if(mDatatable.Rows.Count!=0){
mDatatable.Rows[mRowposition][〃編號(hào)〃]=textBoxl.Text;
mDatatable.Rows[mRowposition][〃姓名〃]=textBox2.Text;
mDatatable.Rows[mRowposition][〃電話號(hào)碼〃]=textBox3.Text;
mAdapter.Update(mDatatable);
)
)
privatevoidbutton7_Click(objectsender,EventArgse)
(
if(mDatatable.Rows.Count!=0)
(
mDatatable.Rows[mRowposition].Delete();
mAdapter.Update(mDatatable);
mRowposition=mRowposition-1;
this.showRecord();
privatevoidbutton8_Click(objectsender,EventArgse)
(
Booleanf=false;
DataRowmrow;
for(inti=0;i<mDatatable.Rows.Count;i++)
(
mrow=mDatatable.Rows[i];
if(Convert.ToString(mrow[〃編號(hào)〃])==〃01〃){
f=true;
mRowposition=i;
this.showRecord();
break;}
if(f==false)
MessageBox.Show(〃沒(méi)有找到??!〃);}}}}
第八章
文件的加密解密
publicpartialclassForml:Form
(
DESdes=newDESCryptoServiceProvider();
publicForml()
(
InitializeComponent();
}
privatevoidbuttonl_Click(objectsender,EventArgse)
(
inti;
FileStreamfin=newFileStream(textBoxl.Text,FileMode.Open,
FileAccess.Read);
FileStreamfout=newFileStream(textBox2.Text,
Fi1eMode.OpenOrCreate,FileAccess.Write);
fout.SetLength(O);
Byte[]bin=newbyte[100];
longrdlen=0;
longtolen=fin.Length;
intlen;
textBox3.Text=des.Key[0].ToStringO;
for(i=0;i<8;i++)
{
textBox3.Text=textBox3.Text+〃,〃+des.Key[i].ToStringO;
)
CryptoStreamencStream=newCryptoStream(fout,
des.CreateEncryptor(),CryptoStreamMode.Write);
while(rdlen<tolen)
(
len=fin.Read(bin,0,100);
encStream.Write(bin,0,len);
rdlen=rdlen+len;
)
encStream.Close();
fout.Close();
fin.Close();
)
privatevoidbutton2_Click(objectsender,EventArgse)
{
inti;
FileStreamfin=newFileStream(textBox2.Text,FileMode.Open,
FileAccess.Read);
FileStreamfout=newFileStream(textBox4.Text,
FileMode.OpenOrCreate,FileAccess.Write);
fout.SetLength(0);
Byte[]bin=newbyte[100];
longrdlen=0;
longtolen=fin.Length;
intlen;
textBox3.Text=des.Key[0].ToStringO;
for(i=0;i<8;i++)
(
textBox3.Text=textBox3.Text+〃,〃+des.Key[i].ToStringO;
)
CryptoStreamencStreaml=newCryptoStream(fout,
des.CreateDecryptor(),CryptoStreamMode.Write);
while(rdlen<tolen)
(
len=fin.Read(bin,0,100);
encStreaml.Write(bin,0,len);
rdlen=rdlen+len;
)
encStreaml.Close();
fout.Close();
fin.Close();
)
)
}
繪制五環(huán)
privatevoidbuttonl_Click(objectsender,EventArgse)
Penpel,pe2,pe3,pe4,pe5;
溫馨提示
- 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ì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 西安健康工程職業(yè)學(xué)院《管理文秘與禮儀》2023-2024學(xué)年第一學(xué)期期末試卷
- 武漢民政職業(yè)學(xué)院《電工技術(shù)與電氣控制》2023-2024學(xué)年第一學(xué)期期末試卷
- 個(gè)性化高端導(dǎo)購(gòu)服務(wù)2024協(xié)議
- 2024版在線教育平臺(tái)合作協(xié)議3篇
- 2024版反擔(dān)保協(xié)議二
- 二零二五版臨時(shí)用工崗位合同范本6篇
- 二零二五年度金融科技股票投資委托合同模板3篇
- 二零二五年度食品飲料個(gè)人物資采購(gòu)合同參考文本6篇
- 四川職業(yè)技術(shù)學(xué)院《稅收理論與實(shí)務(wù)》2023-2024學(xué)年第一學(xué)期期末試卷
- 二零二五版城市改造房屋拆遷掛靠管理合同3篇
- 公務(wù)員考試工信部面試真題及解析
- GB/T 15593-2020輸血(液)器具用聚氯乙烯塑料
- 2023年上海英語(yǔ)高考卷及答案完整版
- 西北農(nóng)林科技大學(xué)高等數(shù)學(xué)期末考試試卷(含答案)
- 金紅葉紙業(yè)簡(jiǎn)介-2 -紙品及產(chǎn)品知識(shí)
- 《連鎖經(jīng)營(yíng)管理》課程教學(xué)大綱
- 《畢淑敏文集》電子書(shū)
- 頸椎JOA評(píng)分 表格
- 員工崗位能力評(píng)價(jià)標(biāo)準(zhǔn)
- 定量分析方法-課件
- 朱曦編著設(shè)計(jì)形態(tài)知識(shí)點(diǎn)
評(píng)論
0/150
提交評(píng)論