c程序设计实验指导与测试第四版所有示例代码_第1页
c程序设计实验指导与测试第四版所有示例代码_第2页
c程序设计实验指导与测试第四版所有示例代码_第3页
c程序设计实验指导与测试第四版所有示例代码_第4页
c程序设计实验指导与测试第四版所有示例代码_第5页
免费预览已结束,剩余56页可下载查看

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

1、本科生实验报告实验课程算法语言与程序设计学院名称管理科学学院专业名称信息与计算科学学生姓名王玉学生学号 指导教师 实验地点 数学应用与计算机仿真实验教学示范中心实验成绩二0 五年三月二0 一五年六月1、填写说明2、适用于本科生所有得实验报告 ( 印制实验报告册除外 );专业填写为专业全称 , 有专业方向得用小括号标明 ;3、格式要求 :用A4纸双面打印(封面双面打印)或在A4大小纸上用蓝黑色水笔书写。打印排版:正文用宋体小四号 ,1 、5倍行距,页边距采取默认形式 (上下 2、54cm,左右2、54cm,页眉1、5cm,页脚1、75cm)。字符间距为默认值(缩放 100%,间距: 标准); 页

2、码用小五号字底端居中。具体要求 :题目(二号黑体居中 );摘要(“摘要”二字用小二号黑体居中 ,隔行书写摘要得文字部分 ,小4号宋体);关键词(隔行顶格书写“关键词”三字 ,提炼3-5个关键词,用分号隔开,小 4 号黑体 );正文部分采用三级标题 ;第1章XX (小二号黑体居中,段前0、5行)1、1 XXXXX小三号黑体XXXXX (段前、段后0、5行)1、1、1小四号黑体(段前、段后0、5行)参考文献(黑体小二号居中 ,段前0、 5行), 参考文献用五号宋体 ,参照参考文献著录规则 (GB/T 77142005)。目录目录第一章程序调试1、修改程序2、实验项目3、测试第二章 C语言基础.1、

3、修改程序2、实验项目3、测试第三章控制结构1、实验项目2、测试第四章数组1、实验项目2、测试第五章指针1、实验项目2、测试第六章函数1、实验项目2、测试第七章文件1、实验项目2、测试第八章结构体与共用体1、实验项目2、测试教师评阅66891315152022222729293639394345454652第一章程序调试1、修改程序【实验1-1】源代码:#inelude <stdio、h>int main( void)int a, b, sum;a=40; b=50;sum=a+b;prin tf("Hello, C! n");prin tf("Sum

4、is %d n", sum); return(0);运行结果:iHella CTlun is ?0|Pi*s5 any key to continue1|>|【实验1-2】源代码:#inelude <stdio、 h> int main( void)float aver;int n1=90 ,n 2=85 ,n 3=88 ,n 4=79 ,n 5=95;aver=( n1+ n2+n3+n4+n5)/5;printf ("5aver = %0、2f 'n", aver); return(0);运行结果:»|'F:许忘基

5、201W020109sylDebug£l-2,exe'= 87.00 Press any key to continue2、实验项目3、测试【ts1-1】源代码:#inelude <stdio、h>int main( void)int X, y,乙x=5, y=8;z=x+y;printf ("x=%d,y=%d,z=%dn",x,y,z); return(O);运行结果:【ts1-2】源代码:#include <stdio、h>int main( void)int a=2, b=3;float x=8、2, y=9、2,乙z=x/

6、2 + y/b;printf ("z=%0、2fn", z); return(0);运行结果:H 'F:许; 201W02D109sylDebugCSl-2 exe-7: =7,17Prggs any key to cgntinug第二章C语言基础1、修改程序【实验2-1】源代码:#inelude <stdio、h>int main( void)int X, y, sum;prin tf("i np ut X:"); scan f("%d",& x);prin tf("i np ut Y:&quo

7、t;); scan f("%d", &y); sum=x+y;printf ("sum=%dn", sum); return(O);运行结果:'F:许忘期 201407020109'sy2Debugs2-l,xe''I二丨同1 Lnput K:19spuit: V : 2QLi.Press 魂key to continueFz2、实验项目【实验2-2】源代码:#include<stdio、h>void mai n()int s1,s2,s3,s4,s5;float a;printf("请输入五

8、门课得成绩:”);scan f("%d%d%d%d%d", &s1, &s2, &s3, &s4, &s5); a=(s1+s2+s3+s4+s5)/5、0;printf("平均分:%0、2f n”,a);运行结果:w ' F:许忘琴 201 加订晋mdpM呼I = i 回 IHT【实验2-3】源代码:#include<stdio、h> void mai n()printf(”n");prin tf("1、Enter datan");printf("2、Data p

9、 rocess ingn");printf("3、En dn");printf(”-n");运行结果:I 'F:许志接 20140'7020109sy2Debug£2-3,exe'1. Entei' data2. Data 口POCESzsieg3. EndI卩rgss any key to cor>tinm&【实验2-4】源代码:#include<stdio、h>int main( void)int a,b,c,d,e,w=1,x=2,y=3,z=4;a=b=c=1;d=+a|+b&a

10、mp;&+c;e=w>x&&y >z;prin tf("a=%d,b=%d,c=%d,d=%d,e=%drr,a,b,c,d,e); return(O);运行结果:3、测试【2-1】源代码:#includevstdio、h> int main( void)char c1,c2;prin tf("nEn ter a character:");scan f("%c",&c1);c1=c1-32;c2=c1+1;prin tf("nResult isn%c %c", c1,c2);

11、prin tf("n%4d%4d",c1,c2);return(0);运行结果:IM 下:许忘協 20140i702D109y2DebugC2-Lexe'Entep A chaiacte*:A1ResuAt: is:11 ABAny key to continue1【2-2】源代码:#inelude <stdio、h>int main( void)double t=1、0;t+=1/2、0+1/3、0+1/4、0+1/5、0;printf("n The result is %fn",t);return(0);运行结果:第三章控制结构1

12、、实验项目【实验3-1】源代码:#includevstdio、h>int mai n () int a;printf(”En ter data n 2、Data pro cess ing n 3、End n");printf(” n1、printf(”n");printf(” selet your nu mber: n"); scan f("%d",&a);switch(a)case 1: prin tf("E nter datan" );break;case 2: prin tf("Data p r

13、ocess ing n" );break; case 3: prin tf("E ndn" );break;default : prin tf("error!");运行结果:【实验3-2】源代码:#includevstdio、h> int mai n ()int i=0,a5,b=0; float c; printf("输入五个分数:”); for(i=0;i<5;i+) sca nf("%d",&ai);for(i=0;i<5;i+)b+=ai;c=b/5、0;printf("

14、平均分:3、2fn大于平均成绩得:",c);for(i=0;i<5;i+)if(ai>c) prin tf("%3d”,ai);运行结果:【实验3-3】源代码:#include<stdio、h>int mai n ()int a,g,s,b;for(b=1;b<=9;b+)for(s=0;s<=9;s+) for(g=0;g<=9;g+) a=g*g*g+s*s*s+b*b*b;if(a=b*100+s*10+g) prin tf("%dt",a);prin tf("n");运行结果:【实验3

15、-4】源代码:#include<stdio、h> int mai n ()int a, i,j;prin tf("*t");n");for(a=1;a<=9;a+) prin tf(”dt",a); printf(”for(i=1;i<=9;i+)prin tf("%dt",i); for(j=1;j<=i;j+) prin tf("%dt",j*i);prin tf("n");运行结果:L234S67891L2243G944a12ISbblUlb2 Id6金121

16、8£43677142i2R4249S3IG24324SEG64?718273554637281Pressany keyto continue. F;、许疑叭A叭Debug、3 -4.exe -1【实验3-5】源代码:#include<stdio、h>int mai n ()char ch;int ch_num=O,dig_ num=O,oth_ num=O;do scan f("%c",&ch);if(ch<='z '&&ch>='a')ch_nu m+=1;else if (ch&l

17、t;='Z'&&ch>='A') ch_n um+=1;else if (ch<='9 '&&ch>='0') dig_ num+=1;else oth_nu m+ ; while (ch!='n');printf("字母:%dn 数字:%dn 其她:%dn",ch_num,dig_num,oth_num-1); return(0);运行结果:曹 Rhk 生 jh£t*8r*&A6sss£SJGJHGHJ?flw

18、71;N3s£ful* Icmy Go?疔ijicm【邕 96】 気盛-巷nc-udeAsfdi? hv巷nc-udeAmafh / hvvoid 3ain()宀floaf XV- yxNXOJOm J2 八 prinff(=鸯> XI 3. scanf(=%f%f"cxex2= wh=eu)宀fl h2*xW W -4W W +3W -9 f2H2*x2*x2*x2-4*x2*x2+3*x2-9 xoh(x+x2)q foH2*xo*xo*xo4*xo*xo+3*xo6 八if(fo*n Ao)x2Hxqe-seXIHXO八if(fabs(fo)八巴 e-5)bre

19、ak 八prinm- wfn-xo=【邕 97】気盛直nc_udeAsfdio , hvvoid 3ain()宀in 二 Lk-nmscanf(=wcrcn=m=0;for(i=1;i< n+1;i+)for(j=0;j< n-i;j+) printf(”");for(k=1;k<=(2*i-1);k+)if(k<=i)printf(” %d",k);elsem+;printf(” %d",k-2*m);m=0;prin tf("n");运行结果:2、测试【填空3-1】源代码:#inelude <stdio、h&g

20、t;#inelude <conio、h>int main( void)int num=O,g,s,b;prin tf("nl np ut data :”); sca nf("%d",&n um);prin tf("nThe result is:");gunumwlo 八 sunum 二 OWIO八 bunumMOO 八 ir(g+b)""s) prinff(=YES 云 £e-seprinff(=N9n£refurn(o)八巷nc-udeAsfdi? hvinf main(void)宀

21、inf kymuoncuoy j八 prinmvIEnferdafa;)- scanf(=%crck= wh=e(kvH2)mm(3CA6) 宀if(kw7HH0)-_(kw=HH0) 宀m+Hk 八mc+HT prinff(-vlresu-f is refurn(o)八1 D回gjIttnt&r data; 450J-J|i-esult i窑 2fri?1 彳riik【编程题3-3】源代码:#includevmath、h> #includevstdio、h> main ()int n=1,co un t=0;float X;double sum ,term;prin tf

22、("i nput x:");sca nf("%f", &x);sum=x;term=x;doterm=-term*x*x/( n+1)*( n+2); sum=sum+term;n=n+2;coun t+;while (fabs(term)>=1e-5);prin tf("si n(x)=%f,cou nt=%dn",sum,cou nt); 运行结果:VI 'F:许忘基 201407020109'sy3DebugCS33 exe'1 o丨回Lnput X:S杰in<x>=0,90?2

23、97,count=& Press any key to Gontinu&H4rrr第四章数组1、实验项目【实验4-1】源代码:#includevstdio、h>int mai n()int a50,i=2,b;a0=1;a1=1;for(i=2;i<16;i+)ai=ai-1+ai-2; for(b=0;b<16;b+)prin tf("%6d",ab); if(b+1)%4=0)prin tf("n");运行结果:«|'已许志? 201407020109shiyanDet>ug5huzu4-l.

24、eMe-1123B5S13Z13455ft?1441233377tia987Ppeas any key to continuefl【实验4-2】源代码:#include<stdio、h>int mai n()int a10 ,i,b=0;输入无门课程成绩计算总分/计算平均数/找出分数高于平均数得成绩:dn",i,ai);printf("输入五门课程成绩 :n"); for(i=0;i<5;i+) scan f("%d", &ai);for(i=0;i<5;i+)b+=ai;b=b/5;for(i=0;i<5

25、;i+)if(ai>b)printf("序号:%d运行结果:a 'F:许志霸 201407020109shiydnlVDebugishLJZu4-2,exe"输入立门课程成绩=H0 85 &7 84 75B3号成绩:901暮;麟51Pre&s any key to continue.DI【实验4-3】源代码:#include<stdio、h>int mai n()int a35,i,j;float b3=0,0,0;for(i=0;i<3;i+)printf(”输入第%d名学生得五门成绩:n",i+1);for(j=

26、0;j<5;j+)sca nf("%d",&aij);/计算平均分for(i=0;i<3;i+)for(j=0;j<5;j+) bi=bi+aij;for(i=0;i<3;i+) bi/=5、0;for(i=0;i<3;i+) printf(” 第 %d 位同学得平均分 2、2fn",i+1,bi);运行结果:BA第1名字生的五门咸绩:帖 97 68 78 6S输入第谄学生的五门成绩:78 76 S? ?1 81希入第3名学生的五门咸绩;J. 0020 press any ke> to contirmgS4 83 75

27、64 ?5 第丄位同学的丰均分刈-20 第咎立回r的平吗4s 第 的平 -仃【实验4-4】源代码:#includevstdio、h> #include<string、h>int mai n()char classes615="Wa ng Wu","Zha ng San ",”Li Si","Zhao Liu","Di ng Yi","Qia n er" char n ame15;int i,b;printf("输入名字:");gets (n ame

28、);for(i=0;i<6;i+)if(strcm p(n ame,classesi)=0)printf("%s 就是 n”,name); b=1; break;b=0;if(b=0)printf("%s 不就是 n”,name);运行结果:'匸:许志£ 20140'7020109shiyanSDebugishjzu4-C,eMe"输人萃字LiuZhaa Liu是1Pany key to continueB【实验4-5】源代码:#includevstdio、h>void mai n()char a12="abcdef

29、kl mnp ”,ch; int top ,bot,mid;prin tf("I nput a character :"); scan f("%c",&ch);bot=0;top=10;for(;bot<to p;)mid=(bot+to p)/2; if(amid=ch)prin tf("This charcreat in an Subscri pt%dn",mid+1); break;else if(ch>amid) bot=mid+1;else top=mid-1;if(bot>t op)prin tf

30、("This character not in a ");运行结果:平¥工总眞 可n口迅巧皿vhiE叫门ph叩卄"1丄.I H I回Input sl c:hai"actei -d. This chaircv&at in a 5ub5:c:ript4Ffggg ant kgj to coetirmg【实验4-6】源代码:#include<stdio、h>#defi ne N 30 void mai n()int i=0;long n;char strN;prin tf("I nputs a po sivite in

31、teger:"); scan f("%ld", &n);while( n>0)stri=n%10+'0'n=n/10; i+;stri='0'prin tf("%sn ”,str);运行结果: '疏许忘克 20140i702D109sy45huzuDebtjg5hu2u4-6.e.Inputs a posrivite Integfei*: 123456789 V87&54321卩pftss any ksy to continug.2、测试【填空题4-1】源代码:#includevstdio、h

32、> #includevstdlib、h>#defi ne N 20 int main( void)int aNN;int n,i,j,k;double s=0,aver=0;prin tf("ninput the dime nsion of array N:"); scan f("%d",&n);prin tf("* The array *n");for(i=0;i< n; i+)for(j=0;j< n;j+)aij=ra nd()%10;prin tf("%4d",aij);if

33、(i=0|j=0|i=n-1|j=n-1) s+=aij;prin tf("n");k=4*( n-1);aver =s/k;prin tf("* THE RESULT * n");printf("The average is %2、3fn",aver); return(0);运行结果:H 下:许志5 20140i702D109y4DebugCS4-l.eKe'I nputthedin&nsion ofM: 41The74094as1 2455L71i*THERESULT *rhei?3.S33tQ Gontingg【

34、改错题4-2】源代码:#inelude<stdio、 h> int main( void)int i, j;char s80;”);prin tf("nEn ter a stri ng:gets(s);”);prin tf("The origi nal stri ng:p uts(s);for(i=j=0; si!='0'i+)if(si!='S') sj=si; j+;sj='0'prin tf("The stri ng after deleted:"); p uts(s);return(0)

35、;运行结果:圖 'F:许忘益 20140702D109sy4DebugCS4-2 e)e'1 1 回 11Enter a sitrin:asdsAhsAASDASDASDThe or'iginaL string; asdsahsaASDASDASDThe stpinsf after deleted: asdsahsaADADADPress any key to continue存H1r->【编程题4-3】源代码:#includevstdio、h> void mai n()int i=0,j;char str100; int num27=0; prin tf(

36、"i np ut str:"); gets(str);while(stri!='0')j=stri-'a'nu mj=nu mj+1;i+;for(j=0;j<26;j+)prin tf("%d ”,n umj);运行结果:P i 曰右 e Acy key tv cent Inue【完善程序4-4】源代码:#includevstdio、h> #includevmath、 h> #defi ne N 10int main( void)int i;double xN=92、0,85、0,56、0,75、0,82、0,7

37、9、0,65、0,91、0,89、0,56、0;double x1=0、0,s=0、0;for(i=0;i<10;i+)x1+=xi;x1/=10;for(i=0;i<10;i+)s+=po w(xi-x1),2);s/=10;s=sqrt(s);prin tf("%fn",s);return(0);运行程序:I201 W020109sy4DebugCSd4 exe-I F 冋SMI12.992305Prggs any key to cqntinug第五章指针1、实验项目【实验5-1】源代码:#include<stdio、h>#defi ne N 1

38、0int main( void)int xN,* p1,* p2,i;for(i=0;i<N;i+)scan f("%d",x+i);for(p 1=x, p2=x; p1-x<N; p1+)if(* p1>* p2) p 2=p1;prin tf("MAX=%d,INDEX=%dn",* p2, p2-x); return(0);运行结果:»|'F:许忘翳 201407020109sy5Debugs5-l,«xe''1 u g 1 '23 4 5& 7S 9 12 34 45

39、 89 62=8press any key to continue.1rri【实验5-2】源代码:#includevstdio、h>#defi ne M 20 int main( void)int i,xM ,n, m, * p,*k,*j;prin tf("nE nter n:");scan f("%d",&n);prin tf("nE nter array xi(i=0%d):", n-1); for(i=0;i< n;i+)sca nf("%d",x+i);prin tf("n&

40、quot;);m=n/2;k=x;j=x+ n-1;p=x+m;for(;k<=p;k+,j-)int t=*k; *k=*j;*j=t;prin tf("nThe array in verted:n");for(i=0;i< n;i+)prin tf("%d ",xi);return(O);运行结果:Ent&r n:5EntH 'F:许忘益 201407020109Uy5Debugs5-2,e3(e" I = I 回er array xtiRl=04>:l 2 3 4 &Theinverted:5 4

41、 3 Z 1 Pi*ess an¥ hey to corat inue【实验5-3】源代码:#includevstdio、h> #includevctype、h>int main( void)char ch80,*c;int d,k=0;prin tf("nP lease input a stri ng:"); gets(ch);c=ch;for(;*c;c+)if(k)if(*c='')k=0;*(c-1)=tou pp er(*(c-1); elsek=1;prin tf("nResult is: %sn",ch

42、); return(0);运行结果:【邕 54】 気盛-巷nc-udeAsfdi? hv#define N 80inf main(void)宀inf no juon char Sfr-NL*PHSH prinmvIEnferasmngDScanf(=%s-S3 wh=e(*(p+i) 宀if(*(p+i)fi-zgm*(p+i)VH-A-)宀 巻一 (p+三-+-T+-Prinff(=%sws3refurn(o)八En JI-舁第芒22眾J吞NB宣社dllanG孙蛋J看Mso工舅KHPFews:摯st y磚y 卄Q c:OJrfi.3g澤巷nc-udeAsfdi? hv#inc-udeAsfd

43、-ib / hv inf 3ain() 宀inf *pnint i,j;float ave=0;printf("输入学生数n:");scan f("%d",&n);p=(i nt *)malloc( n*5*sizeof( in t);if(p=NULL)prin tf("ERROR"); exit(0);for(i=0;i< n; i+)printf(”输入第%d名学生得五门成绩:n",i+1);for(j=0;j<5;j+)sca nf("%d", p+5*i+j);/计算平均分f

44、or(i=0;i< n; i+)for(j=0;j<5;j+)ave+=*( p+i*5+j);printf(” 第 %d 位同学得平均分 2、2fn",i+1,ave/5); ave=0;运行结果:1 2 3 4 &输入第2名学生的五门咸绩;1 2 3 4 5前入第y名学生的五门成绩:3 4 5 6 7凰丄位同学的平士驸乩腼82位同李的平均和剧3位同学的平均务5:师PM【实验5-6】源代码:#include<stdio、h>int main( void)int base=0;char str80, * p=str;prin tf("I np

45、ut the binary nu mber n"); gets(str);while(* p!='0')base=base*2+* p-48; p+;prin tf("%dn", base); return(0);运行结果:2、测试【填空题5-1】源代码:#includevstring、h>#includevstdio、h> int main( void)char str50,* p1,* p2;int i, t=0;prin tf("I np ut:");scan f("%s",str);p 仁

46、str;p 2=str+strle n( str)-1;for (i=0;i<=(strle n(str)-1)/2;i+) if (*p 1!=* p2)t=1;break;if(t!=1)prin tf("%sn","yes!");elseprin tf("%sn"," no!"); return(0);运行结果:【改错题5-2】源代码:运行结果:【填空题5-3】源代码:#inelude <stdio、h>#inelude <string、h>int main( void)char

47、 *p ,str1OO;long int n=0;int flag=1;p=str;prin tf("E nter a stri ng:n"); gets( p);while(* p!='0')if(*p='-')flag=-1;p+;n=n *10+* p-48;P+;prin tf("%ldn", n*flag); return(0);口丨回li-i运行结果:'F:许忘201407020109Vy5DebugCS5-3 exe'Ent&i* a stvin:-123451辭輻Press key

48、to continue第六章函数1、实验项目【实验6-1】源代码:#include<stdio、h>float aver (float b,i nt n );int main( void)float ave,a10;int i;for (i=0;i<10;i+)scanf (”f", &ai);ave =aver(a,10);printf ("average =%6、2fn", ave); return(0);float aver (float b,i nt n )int i ;float max, min, sum ;max=min=s

49、um=b0;for (i=1;i <n ;i+)if (bi>max )max=bi;else if ( bi< min )min=bi;sum=sum+bi;printf ("max=%6、2fn min=%6、2fn”,max,min); return (sum/n);运行结果:【实验6-2】源代码:#inelude <stdio、 h> int main( void)int a,b,x;in t ged(i nt,i nt);prin tf("E nter a,b:"); scan f("%d%d",&

50、;a,&b); x=ged(a,b);prin tf("%d",x); return(0);int ged(i nt u,i nt v)int t;while(u%v!=0)t=u%v;u=v; v=t; return(v);运行结果:k201407020109sy6Debu956-2,"Enter a.b: 15 3DIPh&ss Anp key to continueD【实验6-3】源代码:#inelude <stdio、 h> int main( void)int a,b,x;int ged(i nt,i nt);prin tf(

51、"E nter a,b:"); scan f("%d%d",&a,&b); x=ged(a,b);prin tf("%d",x); return(O);int ged(i nt u,i nt v)if(u%v=O) return v;elsereturn (gcd(v,u%v);运行结果:咋:许志疆 201407020109sy6Debug56-3,«xe" 口 | 回Enter a.b: 25 15H5Pi*&ss Aey key to continueB【实验6-4】源代码:#inclu

52、de <stdio、h>#includevstdiib、h>int main (i nt argc,char *argv)int a,b,x;in t gcd(i nt,i nt);a=atoi(argv1);b=atoi(argv2);prin tf("a=%db=%drr,a,b);x=gcd(a,b);prin tf("gcd=%d",x);return(0);int gcd(i nt u,i nt v)int t;while(u%v!=0)t=u%v;u=v; v=t; return(v);运行结果:【实验6-5】源代码:#inelude

53、 <stdio、h>#includevstdiib、h>void in vert(i nt a,i nt n)int i,w, nn=n/2;for(i=0;i< nn ;i+)w=ai-n;ai-n=a-i-1;a-i-1=w;int main( void)int i,n, *a;while(1)prin tf("E nter n:"); scan f("%d", &n);prin tf("n");if(n >0)break;a=(i nt *)malloc( n*sizeof( in t);i

54、f(a=NULL)prin tf("allocati on error_abort in g"); exit(1);printf("Enter a0、八 a%d:",n); for(i=0; i<n; i+)scan f("%d",a+);in vert(a ,n);printf ("the array has bee n in vert:n"); for(i=0;i <n ;i+)if(i%5=0) prin tf("n"); prin tf("%5d",*(a

55、-n+i);return(O);运行结果:H 许志益 201W020109sy6Debugs6-5,«fe''Ent&r n;5Eiitei' a31. . a5:1 2 3 4 5 the ai'paii lias been inuept:54321Presskey to continue【实验6-6】源代码:#includevstdio、h>#includevstdlib、h>float aver(i nt n ,i nt m ,int *p);int mai n()int *p,n ,i,j,m;printf(”输入学生数n:");scan f("%d",&n);printf("输入科目数m:&

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论