




版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
1、全国计算机等级考试三级网络技术南开上机100题几点说明:1、题目标题号前用“”显示的是2005年4月份本人根据各大论坛考生聩的题号集中而来,题号前加“”为2005年9月上机考试题,其中难免有题型相同而题号增加的现象,此类标明,仅供参考。2、每种题目,只用一种解题方法,兰色部分为解题答案,此种方法本人觉得容易理解,不易出错,适合初学者。3、特别说明:所有解法,本人均上机验证通过。4、个别南开题如57、100题,题目与原书有所不同,是按实际考试的题目所来,并对今年在实际上机中出现的考题,用红色部分表示实际上机题中的注明事项。题目1请编写一个函数jsValue(int m,int k,int xx)
2、,该函数的功能是:将大于整数m且紧靠m的k个素数存入数组xx传回。 最后调用函数writeDat()读取10组数据,分别得出结果且把结果输出到文件out.dat中。 部分源程序存在文件prog1.c中。 例如:若输入17 5 则应输出:19,23,29,31,37。 请勿改动主函数main()和写函数writeDat()的内容。#include <conio.h>#include <stdio.
3、h>void readwriteDat();int isP(int m)int i;for(i=2;i<m;i+) if(m % i=0)return 0;return 1;void num(int m,int k,int xx) int s=0; for(m=m+1;k>0;m+) if(isP(m) xxs+=m; k-;main() int m,n,xx1000; clrscr(); printf("nPl
4、ease enter two integers:"); scanf("%d%d",&m,&n); num(m,n,xx); for(m=0;m<n;m+) printf("%d ",xxm); printf("n"); readwriteDat();void readwriteDat()int m,n,xx1000, i;FILE *rf,*wf;rf=fopen(&quo
5、t;in.dat","r");wf=fopen("out.dat","w");for(i=0;i<10;i+) fscanf(rf,"%d %d",&m,&n); num(m,n,xx); for(m=0;m<n;m+)fprintf(wf,"%d ",xxm); fprintf(wf,"n");fclo
6、se(rf);fclose(wf); 题目2已知数据文件IN.DAT中存有200个四位数,并已调用读函数readDat()把这些数存入数组a中,请考生编制一函数jsVal(),其功能是:如果四位数各位上的数字均是0或2或4或6或8,则统计出满足此条件的个数cnt,并把这些四位数按从大到小的顺序存入数组b中。最后main( )函数调用写函数writeDat()把结果cnt以及数组b中符合条件的四位数输出到OUT.DAT文件中。 注意:部分源程序存在文件prog1.c中。
7、 程序中已定义数组:a200,b200,已定义变量:cnt 请勿改动数据文件IN.DAT中的任何数据、主函数main()、读函数readDat()和写函数writeDat()的内容。#include <stdio.h>#define MAX 200int aMAX, bMAX, cnt = 0 ;void jsVal() int i,j,qw,bw,sw,gw;for(i=0;i<MAX;i+) qw=ai/1000; bw=ai/100%10; &
8、#160; sw=ai%100/10; gw=ai%10; if(qw&&qw%2=0&&bw%2=0&&sw%2=0&&gw%2=0) bcnt+=ai; for(i=0;i<cnt-1;i+) for(j=i+1;j<cnt;j+) if(bi<b
9、j) qw=bi; bi=bj; bj=qw;void readDat()int i ;FILE *fp ;fp = fopen("in.dat", "r") ;for(i = 0 ; i < MAX ; i+) fscanf(fp, "%d", &ai) ;fclose(fp) ;void main()int i ;readDat() ;jsVal() ;printf("满足条件的数=%dn", cnt) ;for(i = 0 ; i < cnt ; i+) printf("%d &
10、quot;, bi) ;printf("n") ;writeDat() ;writeDat()FILE *fp ;int i ;fp = fopen("out.dat", "w") ;fprintf(fp, "%dn", cnt) ;for(i = 0 ; i < cnt ; i+) fprintf(fp, "%dn", bi) ;fclose(fp) ;题目3函数ReadDat( )实现从文件IN.DAT中读取一篇英文文章存入到字符串数组xx中;请编制函数StrOR( ),其函数的功能是
11、:以行为单位依次把字符串中所有小写字母o左边的字符串内容移到该串的右边存放,然后把小写字母o删除,余下的字符串内容移到已处理字符串的左边存放,之后把已处理的字符串仍按行重新存入字符串数组xx中。最后main()函数调用函数WriteDat()把结果xx输出到文件OUT5.DAT中。 原始数据文件存放的格式是:每行的宽度均小于80个字符,含标点符号和空格。 注意:部分源程序存放在文件prog1.c中。 请勿改动主函数main()、读数据
12、函数ReadDat()和输出数据函数WriteDat()的内容。#include <stdio.h>#include <string.h>#include <conio.h>char xx5080 ;int maxline = 0 ; /* 文章的总行数 */int ReadDat(void) ;void WriteDat(void) ;void StrOR(void)int i,righto,j,s,k;char tem80;for(i=0;i<maxline;i+) for(j=strlen(xxi)-1;j>
13、;=0;j-) k=0; memset(tem,0,80); if(xxij='o') righto=j; for(s=righto+1;s<strlen(xxi);s+) tem
14、k+=xxis; for(s=0;s<righto;s+) if(xxis!='o') temk+=xxis; strcpy(xxi,tem); else continue;
15、; void main()clrscr() ;if(ReadDat() printf("数据文件IN.DAT不能打开!n007") ; return ;StrOR() ;WriteDat() ;int ReadDat(void)FILE *fp ;int i = 0 ;char *p ;if(fp = fopen("IN.DAT", "r") = NULL) return 1 ;while(fgets(xxi, 80, fp) != NU
16、LL) p = strchr(xxi, 'n') ; if(p) *p = 0 ; i+ ;maxline = i ;fclose(fp) ;return 0 ;void WriteDat(void)FILE *fp ;int i ;clrscr() ;fp = fopen("OUT5.DAT", "w") ;for(i = 0 ; i < maxline ; i+)
17、0; printf("%sn", xxi) ; fprintf(fp, "%sn", xxi) ;fclose(fp) ;题目4函数ReadDat()实现从文件IN.DAT中读取一篇英文文章存入到字符串数组xx中,请编制函数StrOL(),其函数的功能是:以行为单位对行中以空格或标点符号为分隔的所有单词进行倒排。最后把已处理的字符串(应不含标点符号)仍按行重新存入字符串数组xx中,最后调用函数writeDat()把结果xx输出到文件OUT6.DAT中。
18、0; 例如:原文:You He Me I am a student.结果:Me He You student a am I 原始数据文件存放的格式是:每行的宽度
19、均小于80个字符,含标点符号和空格。 部分源程序存在文件prog1.c中。 请勿改动主函数main()、读数据函数ReadDat()和输出数据函数writeDat()的内容。#include <stdio.h>#include <string.h>#include <conio.h>#include <ctype.h>char xx5080;int maxline=0;/*文章的总行数*/int ReadDat(void);void WriteDat(vo
20、id);void StrOL(void) int i,j,k,s,m,strl;char str80;for(i=0;i<maxline;i+) strl=strlen(xxi);memset(str,0,80); s=k=0;for(j=strl-1;j>=0;j-) if(isalpha(xxij) k+; else for(m=1;m<=k;m+)strs+=xxij+m;
21、160; k=0; if(!isalpha(xxij) strs+=' ' &
22、#160; for(m=1;m<=k;m+) strs+=xxij+m;strs='0' strcpy(xxi,str); void main()clrscr();if(ReadDat()printf("数据文件IN.DAT不能打开!n007");return;StrOL();WriteDat();int
23、 ReadDat(void)FILE *fp;int i=0;char *p;if(fp=fopen("IN.DAT","r")=NULL) return 1;while(fgets(xxi,80,fp)!=NULL) p=strchr(xxi,'n'); if(p)*p=0; i+;maxline=i;fclose(fp);return 0;void WriteDat(void)FILE *fp;int i;clrscr();fp
24、=fopen("OUT6.DAT","w");for(i=0;i<maxline;i+) printf("%sn",xxi); fprintf(fp,"%sn",xxi);fclose(fp);*题目5(整数排序题)在文件in.dat中有200个正整数,且每个数均在1000至9999之间。函数ReadDat()读取这200个数存放到数组aa中。请编制函数jsSort(),其函数的功能是:要求按每个数的后三位的大小进
25、行升序排列,然后取出满足此条件的前10个数依次存入数组bb中,如果后三位的数值相等,则按原先的数值进行降序排列。最后调用函数WriteDat()把结果bb输出到文件out.dat中。 例:处理前 6012 5099 9012 7025 8088 处理后 9012 6012 7025 8088 5099 部分源程序存在文件prog1.c中。请勿改动主函数main()、读数据函数ReadDat()和输出数据函数Wr
26、iteDat()的内容。#include <stdio.h>#include <string.h>#include <conio.h>int aa200,bb10;void jsSort()int i,j,data;for(i=0;i<199;i+)for(j=i+1;j<200;j+) if(aai%1000>aaj%1000|aai%1000=aaj%1000&&aai<aaj)
27、60; data=aai;aai=aaj;aaj=data;for(i=0;i<10;i+) bbi=aai;void main()readDat();jsSort();writeDat();readDat()FILE *in;int i;in=fopen("in.dat","r");for(i=0; i<200; i+) fscanf(in,"%d,",&aai);fclose(in);writeDat()FILE *out;int i;clrscr();out=f
28、open("out.dat","w");for(i=0; i<10; i+) printf(" %d",bbi); fprintf(out,"%dn",bbi);题目6 正整数排序在文件in.dat中有200个正整数,且每个数均在1000至9999之间。函数ReadDat()读取这200个数存放到数组aa中。请编制函数jsSort(),其函数的功能是:要求按每个数的后三位的大小进行降序排列,然后取出满足此条件的前10个数依次存入数组b中,
29、如果后三位的数值相等,则按原先的数值进行升序排列。最后调用函数WriteDat()把结果bb输出到文件out.dat中。例:处理前 9012 5099 6012 7025 8088 处理后 5099 8088 7025 6012 9012 注意:部分源程序已给出。请勿改动主函数main()、读数据函数ReadDat()和输出数据函数WriteDat()的内容。#include<stdio.h>#include<string.h>#include<conio.h>int
30、 aa200,bb10;void jsSort()int i,j,data;for(i=0;i<199;i+)for(j=i+1;j<200;j+) if(aai%1000<aaj%1000|aai%1000=aaj%1000&&aai>aaj) data=aai;aai=aaj;aaj=data;for(i=0;i<10;i+) bbi=aai;void m
31、ain()readDat();jsSort();writeDat();system("pause");readDat()FILE *in;int i;in=fopen("in.dat","r");for(i=0; i<200; i+) fscanf(in,"%d,",&aai);fclose(in);writeDat()FILE *out;int i;clrscr();out=fopen("out.dat","w");for(i=0; i<10; i+)p
32、rintf("i=%d,%dn",i+1,bbi);fprintf(out,"%dn",bbi);fclose(out);*题目7(结构体操作题)已知在文件IN.DAT中存有100个产品销售记录,每个产品销售记录由产品代码dm(字符型4位),产品名称mc(字符型10位),单价dj(整型),数量sl(整型),金额je(长整型)五部分组成。其中:金额=单价*数量计算得出。函数ReadDat()是读取这100个销售记录并存入结构数组sell中。请编制函数SortDat(),其功能要求:按产品代码从大到小进行排列,若产品代码相同,则按金额从大到小进行排列,最终排
33、列结果仍存入结构数组sell中,最后调用函数WriteDat()把结果输出到文件OUT6.DAT中。 部分源程序存在文件prog1.c中。请勿改动主函数main()、读数据函数ReadDat()和输出数据函数WriteDat()的内容。#include <stdio.h>#include <mem.h>#include <string.h>#include <conio.h>#include <stdlib.h>#define MAX 100typedef structchar dm5;
34、/*产品代码*/char mc11; /*产品名称*/int dj; /*单价*/int sl; /*数量*/long je; /*金额*/PRO;PRO sellMAX;void ReadDat();void WriteDat();void SortDat()int i,j;PRO xy;for(i=0;i<99;i+)for(j=i+1;j<100;j+)
35、; if(strcmp(selli.dm,sellj.dm)<0|strcmp(selli.dm,sellj.dm)=0&&selli.je<sellj.je) xy=selli; sell i=sellj; sellj=xy;void main()memset(sell,0,sizeof(sell);ReadDat();SortDat();WriteDat();void ReadDat()FILE *fp;char str80,ch11;int i;fp=fopen("IN.DAT&
36、quot;,"r");for(i=0;i<100;i+) fgets(str,80,fp); memcpy(selli.dm,str,4); memcpy(selli.mc,str+4,10); memcpy(ch,str+14,4);ch4=0; selli.dj=atoi(ch); memcpy(ch,str+18,5);ch5=0;
37、60; selli.sl=atoi(ch); selli.je=(long)selli.dj*selli.sl;fclose(fp);void WriteDat(void)FILE *fp;int i;fp=fopen("OUT6.DAT","w");for(i=0;i<100;i+)printf("%s %s %4d %5d %5dn", selli.dm,selli.mc,selli.dj,selli.sl,selli.je);fprintf(fp,"%s %s %4
38、d %5d %5dn", selli.dm,selli.mc,selli.dj,selli.sl,selli.je);fclose(fp);*题目8(字符替换题)函数ReadDat()实现从文件ENG.IN中读取一篇英文文章,存入到字符串数组xx中;请编制函数encryptChar(),按给定的替代关系对数组xx中的所有字符进行替代,仍存入数组xx的对应的位置上,最后调用函数WriteDat()把结果xx输出到文件PS1.DAT中。替代关系:f(p)=p*11 mod 256(p是数组中某一个字符的ASCII值,f(p)是计算后新字符的ASCII值),如果计算后f(p)值小于等于32
39、或大于130,则该字符不变,否则将f(p)所对应的字符进行替代。(注意中间变量用无符号整型),部分源程序存在文件prog1.c中。原始数据文件存放的格式是:每行的宽度均小于80个字符。请勿改动主函数main()、读数据函数ReadDat()和输出数据函数WriteDat()的内容。#include <stdio.h>#include <string.h>#include <conio.h>#include <ctype.h>unsigned char xx5080;int maxline=0;/*文章的总行数*/int ReadDat(void)
40、;void WriteDat(void);void encryptChar() int i,j;for(i=0;i<maxline;i+) for(j=0;j<strlen(xxi);j+) if(xxij*11%256<=32|xxij*11%256>130) continue; else xxij=xxij*11%256;void main()clrscr();if(ReadD
41、at()printf("数据文件ENG.IN不能打开!n007");return;encryptChar();WriteDat();int ReadDat(void)FILE *fp;int i=0;unsigned char *p;if(fp=fopen("eng.in","r")=NULL) return 1;while(fgets(xxi,80,fp)!=NULL) p=strchr(xxi,'n'); if(p)*p=0;
42、60; i+;maxline=i;fclose(fp);return 0;void WriteDat(void)FILE *fp;int i;fp=fopen("ps1.dat","w");for(i=0;i<maxline;i+) printf("%sn",xxi); fprintf(fp,"%sn",xxi);fclose(fp);*题目9(字符串排序题)函数ReadDat()实现从文件IN.DAT中读取一篇英文文章存入到
43、字符串数组xx中,请编制函数SortCharD(),其函数的功能是:以行为单位对字符按从大到小的顺序进行排序,排序后的结果仍按行重新存入字符串数组xx中,最后调用函数writeDat()把结果xx输出到文件OUT2.DAT中。 例:原文:dAe,BfC. CCbbAA 结果:fedCBA.
44、 bbCCAA 原始数据文件存放的格式是:每行的宽度均小于80个字符,含标点符号和空格。 部分源程序存在文件prog1.c中。 请勿改动主函数main()、读数据函数ReadDat()和输出数据函数writeDat()的内容。#include <stdio.h>#include <str
45、ing.h>#include <conio.h>char xx5080;int maxline=0;/*文章的总行数*/int ReadDat(void);void WriteDat(void);void SortCharD(void)int i,j,k,strl;char ch;for(i=0;i<maxline;i+)strl=strlen(xxi); for(j=0;j<strl-1;j+) for(k=j+1;k<strl;k+)
46、 if(xxij<xxik) ch=xxij; xxij=xxik; xxik=ch;void main()clrscr();if(ReadDat()printf("数据文件IN.DAT不能打开!n007");return;SortCharD();WriteDat();int ReadDat(void)FILE *fp;int i=0;char *p;if(fp=fopen("IN.DAT","r"
47、)=NULL) return 1;while(fgets(xxi,80,fp)!=NULL) p=strchr(xxi,'n'); if(p)*p=0; i+;maxline=i;fclose(fp);return 0;void WriteDat(void)FILE *fp;int i;fp=fopen("OUT2.DAT","w");for(i=0;i<maxline;i+)printf("%sn",xx
48、i);fprintf(fp,"%sn",xxi);fclose(fp);*题目10(替换字符题)函数ReadDat()实现从文件IN.DAT中读取一篇英文文章存入到字符串数组xx中,请编制函数ConvertCharA(),其函数的功能是:以行为单位把字符串中的所有小写字母改写成该字母的下一个字母,如果是字母z,则改写成字母a。大写字母仍为大写字母,小写字母仍为小写字母,其他字符不变。把已处理的字符串仍按行重新存入字符串数组xx中,最后调用函数writeDat()把结果xx输出到文件OUT1.DAT中。 例:原文:Adb.Bcdza
49、; abck.LLhj 结果:Aec.Bdeab bcdl.LLik 原始数据文件存放的格式是:每行的宽度均小于80个字符,含标点符号和空格。
50、60; 部分源程序存在文件prog1.c中。 请勿改动主函数main()、读数据函数ReadDat()和输出数据函数writeDat()的内容。#include <stdio.h>#include <string.h>#include <conio.h>char xx5080;int maxline=0;/*文章的总行数*/int ReadDat(void);void WriteDat(void);void ConvertCharA(void) int i,j;for(i=0;i
51、<maxline;i+) for(j=0;j<strlen(xxi);j+) if(xxij='z') xxij='a' else if(xxij>='a'&&xxij<='y') xxij+=1; void main(
52、)clrscr();if(ReadDat()printf("数据文件IN.DAT不能打开!n007");return;ConvertCharA();WriteDat();int ReadDat(void)FILE *fp;int i=0;char *p;if(fp=fopen("IN.DAT","r")=NULL) return 1;while(fgets(xxi,80,fp)!=NULL) p=strchr(xxi,'n'); if(p)*p=0
53、; i+;maxline=i;fclose(fp);return 0;void WriteDat(void)FILE *fp;int i;clrscr();fp=fopen("OUT1.DAT","w");for(i=0;i<maxline;i+) printf("%sn",xxi); fprintf(fp,"%sn",xxi);fclose(fp);题目11(字符串字母移位题)程序prog1.c的功能
54、是:把 s 字符串中的所有字母改写成该字母的下一个字母,字母z改写成字母a。要求大写字母仍为大写字母,小写字母仍为小写字母,其它字符不做改变。 请考生编写函数chg(char *s)实现程序要求,最后调用函数readwriteDAT( )把结果输出到文件bc1.out中。 例如:s 字符串中原有的内容为:Mn.123Zxy,则调用该函数后,结果为:No.123Ayz。 注意:部分源程序存在文件prog1.c文件中。 请勿改动主函数mai
55、n( )和输出数据函数readwriteDAT()的内容。#include <conio.h>#include <string.h>#include <stdio.h>#include <ctype.h>#define N 81void readwriteDAT();void chg(char *s)int I;for(I=0;I<strlen(s);I+)if(si='z'|si='Z') si-=25; else if(si>='a'&&si<='y
56、39;|si >='A'&&si<='Y') si+=1;main( )char aN;clrscr();printf("Enter a string : "); gets(a);printf("The original string is : "); puts(a);chg(a);printf("The string after modified : ");puts (a);readwriteDAT() ;void readwriteDAT()int i ;char aN
57、;FILE *rf, *wf ;rf = fopen("bc1.in", "r") ;wf = fopen("bc1.out", "w") ;for(i = 0 ; i < 50 ; i+) fscanf(rf, "%s", a) ; chg(a) ; fprintf(wf, "%sn", a) ;fclose(rf) ;fc
58、lose(wf) ;*题目12(结构体运算题题)已知在文件IN.DAT中存有100个产品销售记录,每个产品销售记录由产品代码dm(字符型4位),产品名称mc(字符型10位),单价dj(整型),数量sl(整型),金额je(长整型)五部分组成。其中:金额=单价*数量计算得出。函数ReadDat()是读取这100个销售记录并存入结构数组sell中。请编制函数SortDat(),其功能要求:按产品名称从小到大进行排列,若产品名称相等,则按金额从小到大进行排列,最终排列结果仍存入结构数组sell中,最后调用函数WriteDat()把结果输出到文件OUT5.DAT中。 &
59、#160;部分源程序存在文件prog1.c中。请勿改动主函数main()、读数据函数ReadDat()和输出数据函数WriteDat()的内容。#include <stdio.h>#include <mem.h>#include <string.h>#include <conio.h>#include <stdlib.h>#define MAX 100typedef structchar dm5; /*产品代码*/char mc11; /*产品名称*/int dj;
60、; /*单价*/int sl; /*数量*/long je; /*金额*/PRO;PRO sellMAX;void ReadDat();void WriteDat();void SortDat()int i,j;PRO xy;for(i=0;i<99;i+)for(j=i+1;j<100;j+) if(strcmp(selli.mc,sellj.mc)>0|strcmp(selli.mc,sellj
61、.mc)=0&&selli.je>sellj.je) xy=selli;selli=sellj;sellj=xy;void main()memset(sell,0,sizeof(sell);ReadDat();SortDat();WriteDat();void ReadDat()FILE *fp;char str80,ch11;int i;fp=fopen("IN.DAT","r");for(i=0;i<100;i+) &
62、#160; fgets(str,80,fp); memcpy(selli.dm,str,4); memcpy(selli.mc,str+4,10); memcpy(ch,str+14,4);ch4=0; selli.dj=atoi(ch); memcpy(ch,str+18,5);ch5=0; selli.sl=atoi(ch); selli.j
63、e=(long)selli.dj*selli.sl;fclose(fp);void WriteDat()FILE *fp;int i;fp=fopen("OUT5.DAT","w");for(i=0;i<100;i+)printf("%s %s %4d %5d %5dn",selli.dm,selli.mc,selli.dj,selli.sl,selli.je);fprintf(fp,"%s %s %4d %5d %5dn", selli.dm,selli.mc,selli.dj,selli.sl,selli
64、.je);fclose(fp);*题目13(结构体运算题)已知在文件IN.DAT中存有100个产品销售记录,每个产品销售记录由产品代码dm(字符型4位),产品名称mc(字符型10位),单价dj(整型),数量sl(整型),金额je(长整型)五部分组成。其中:金额=单价*数量计算得出。函数ReadDat()是读取这100个销售记录并存入结构数组sell中。请编制函数SortDat(),其功能要求:按产品代码从小到大进行排列,若产品代码相等,则按金额从大到小进行排列,最终排列结果仍存入结构数组sell中,最后调用函数WriteDat()把结果输出到文件OUT9.DAT中。
65、160; 部分源程序存在文件prog1.c中。请勿改动主函数main()、读数据函数ReadDat()和输出数据函数WriteDat()的内容。#include <stdio.h>#include <mem.h>#include <string.h>#include <conio.h>#include <stdlib.h>#define MAX 100typedef structchar dm5; /*产品代码*/char mc11; /*产品名称*/int dj;
66、 /*单价*/int sl; /*数量*/long je; /*金额*/PRO;PRO sellMAX;void ReadDat();void WriteDat();void SortDat()int i,j;PRO xy;for(i=0;i<99;i+)for(j=i+1;j<100;j+) if(strcmp(selli.dm,sellj.dm)>0|strcmp(selli.dm,
67、sellj.dm)=0&&selli.je<sellj.je) xy=selli;selli=sellj;sellj=xy;void main()memset(sell,0,sizeof(sell);ReadDat();SortDat();WriteDat();void ReadDat()FILE *fp;char str80,ch11;int i;fp=fopen("IN.DAT","r");for(i=0;i<100;i+)
68、160; fgets(str,80,fp); memcpy(selli.dm,str,4); memcpy(selli.mc,str+4,10); memcpy(ch,str+14,4);ch4=0; selli.dj=atoi(ch); memcpy(ch,str+18,5);ch5=0; selli.sl=atoi(ch); selli.je=(long)selli.dj*selli.sl;fclose(fp);void WriteDat()FILE *fp;int i;fp=fopen("OUT9.DAT","w");for(i=0;i<100;i+)printf("%s %s %4d %5d %5dn", selli.dm,selli.mc,selli.dj,selli.sl,selli.je);fprintf(fp,"%s %s %4d %5d %5dn", selli.dm,selli.mc
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 英语研究生试题及答案
- 家具设计中的文化表达与市场需求考题及答案
- 大学物理跨学科问题探讨案例试题及答案
- 安全工程师的建筑施工安全考量及试题与答案
- 注册土木工程师考试分门别类复习试题及答案
- 施工管理员试题及答案
- 引进博士面试题及答案
- 学习技巧大学化学考试试题及答案
- 教育教学反思与教学能力提升试题及答案
- 理解电子商务的试题及答案
- XX医院抗菌药物临床应用监督管理机制+预警机制
- 临湘事业单位统一招聘考试真题
- 2024年全国执业兽医考试真题及答案解析
- 2024年湖南省长沙市中考地理试卷真题(含答案解析)
- 《中国健康成年人身体活动能量消耗参考值》(编制说明)
- 潮健身let's dance智慧树知到期末考试答案章节答案2024年广西师范大学
- 2《归去来兮辞并序》公开课一等奖创新教学设计统编版高中语文选择性必修下册
- 法理斗争1全文
- 医疗美容诊所规章制度上墙
- 2024年山东省青岛市城阳区中考生物模拟试卷
- 汽车机械式变速器分类的术语及定义
评论
0/150
提交评论