• 网络学院
  • IT资讯
  • 操作系统
  • 网络技术
  • 软件应用
  • 办公软件
  • 编程技术
  • 网站架设
  • 数据库类
  • 平面设计
  • 多媒体类
  • 游戏资讯
  • 教学论文
  • 认证考试
三级C语言程序设计上机考试习题集(91-100)
  站点:
  • 首 页
  • 最新软件
  • 文章教程
  • 国内软件
  • 国外软件
  • 绿色软件
  • 源码下载
  • 字体下载
三级C语言程序设计上机考试习题集(91-100)
软件发布 三级C语言程序设计上机考试习题集(91-100)
网络软件 系统工具 应用软件 联络聊天 图形图像 多媒体类 行业软件 游戏娱乐 编程开发 安全相关 教育教学 数码软件 绿软下载
热门软件: QQ 瑞星 pplive e话通 木马克星 千千静听 office2000 五笔字根 Photoshop 视频分割
返回文章教程首页 >> 认证考试 >> 计算机等级考试 >> 计算机三级考试 >> 三级C语言程序设计上机考试习题集(91-100)

三级C语言程序设计上机考试习题集(91-100)

添加时间: 2007-4-18 9:00:15  作者: 计算机等级考试认证参考  阅读次数:129   来源: http://www.d9soft.com

       

*****************************************************************************************
题目91(无忧id  52 整数统计运算题)
请编制程序prog1.c,从文件in.dat中读取200个整数至数组xx中,求出奇数的个数cnt1和偶数的个数cnt2以及数组xx下标为偶数的元素值的算术平均值pj(保留2位小数)。
     结果cnt1,cnt2,pj输出到out.dat中。
     部分程序、读数据函数read_dat(int xx[200])及输出格式已给出。
#include <conio.h>
#include <stdio.h>
#define N 200

void read_dat(int xx[N])
{
 int i,j;
 FILE *fp;
fp=fopen("in.dat","r");
 for(i=0;i<20;i++){
     for(j=0;j<10;j++){
        fscanf(fp,"%d,",&xx[i*10+j]);
        printf("%d ",xx[i*10+j]);
  }
  printf(" ");
 }
 fclose(fp);
}

void main()
{
 int i,j,sum;
 int cnt1,cnt2,xx[N];
 float pj;
 FILE *fw;
 clrscr();
 fw=fopen("out.dat","w");
 read_dat(xx);
/**************************************/
 sum=0;  pj=0.0;  cnt1=cnt2=0;
 for(i=0;i<N;i++)
  { if(xx[i]%2) cnt1++;
    else cnt2++;
    if(i%2==0) {pj+=xx[i];sum++;}
  }
 pj/=sum;

/**************************************/

printf(" cnt1=%d,cnt2=%d,pj=%6.2f ",cnt1,cnt2,pj);
fprintf(fw,"%d %d %6.2f ",cnt1,cnt2,pj);
fclose(fw);
}

*****************************************************************************************
☆题目92(无忧id 56 整数统计运算题)

请编制程序prog1.c,从文件IN.DAT中读取200个整数至数组xx中,求出最大数max及最大数的个数cnt和数组xx中能被3整除或能被7整除的算术平均值pj(保留2位小数)。
     结果max,cnt,pj输出到OUT.DAT中。
     部分程序、读数据函数read_dat(int xx[200])及输出格式已给出。
#include <conio.h>
#include <stdio.h>
#define N 200

void read_dat(int xx[N])
{
 int i,j;
 FILE *fp;
fp=fopen("in.dat","r");
 for(i=0;i<20;i++){
     for(j=0;j<10;j++){
        fscanf(fp,"%d,",&xx[i*10+j]);
        printf("%d",xx[i*10+j]);
  }
  printf(" ");
 }
 fclose(fp);
}

void main()
{
 int m,temp,n,sum;
 int cnt,xx[N],max ;
 float pj;
 FILE *fw;
clrscr();
 fw=fopen("out.dat","w");
 read_dat(xx);
/********************************************/
 cnt=0;  max=xx[0];  pj=0.0;  n=0;
 for(m=0;m<N;m++)
   if(max<xx[m]) max=xx[m];
 for(m=0;m<N;m++)
   {if(xx[m]==max) cnt++;
    if(xx[m]%3==0xx[m]%7==0)
       { pj+=xx[m];  n++; }
   }
 pj/=n;

/********************************************/

printf(" max=%d,cnt=%d,pj=%6.2f ",max,cnt,pj);
fprintf(fw,"%d %d %6.2f ",max,cnt,pj);
fclose(fw);
}

*****************************************************************************************
★题目93(无忧id 59 方差运算题)
此题南开标准解法有误!

请编制函数ReadDat()实现从文件IN.DAT中读取1000个十进制整数到数组xx中;请编制函数Compute(),分别计算出xx中奇数的个数odd,偶数的个数even,平均值aver以及方差totfc的值,最后调用函数WriteDat()把结果输出到OUT.DAT文件中。
     计算方差的公式如下:
             N        2
     totfc=1/N ∑  (xx[i]-aver)
              i=1
     原始数据文件存放的格式是:每行存放10个数,并用逗号隔开。(每个数均大于0且小于等于2000)
     部分源程序存在文件prog1.c中。
     请勿改动主函数main()和输出数据函数writeDat()的内容。
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX 1000

int xx[MAX],odd=0,even=0;
double aver=0.0,totfc=0.0;
void WriteDat(void);
int ReadDat(void)
{
 int i;
 FILE *fp;
 if((fp=fopen("IN.DAT","r"))==NULL) return 1;
/***************编制函数ReadDat()*****************/
 for(i=0;i<MAX;i++)
  { fscanf(fp,"%d,",&xx[i]);
    if((i+1)%10==0)
    fscanf(fp," ");
  }
/*********************************************/
 fclose(fp);
 return 0;
}

void Compute(void)
{  int i;
  for(i=0;i<MAX;i++)
   { if(xx[i]%2)  odd++;
     else  even++;
     aver+=xx[i];
   }
  aver/=MAX;
  for(i=0;i<MAX;i++)
    totfc+=(xx[i]-aver)*(xx[i]-aver);
  totfc/=MAX;
}

void main()
{
 int i;
 for(i=0;i<MAX;i++)xx[i]=0;
 if(ReadDat()){
   printf("数据文件IN.DAT不能打开!07 ");
   return;
 }
 Compute();
 printf("ODD=%d OVEN=%d AVER=%f TOTFC=%f ",odd,even,aver,totfc);
 WriteDat();
}

void WriteDat(void)
{
 FILE *fp;
 int i;
 fp=fopen("OUT.DAT","w");
 fprintf(fp,"%d %d %f %f ",odd,even,aver,totfc);
 fclose(fp);
}#p#
*****************************************************************************************
★题目94(无忧id 50 整数统计运算题)

请编制程序prog1.c,从文件in.dat中读取200个整数至数组xx中,求出奇数的个数cnt1和偶数的个数cnt2以及数组xx中值为偶数的算术平均值pj(保留2位小数)。
     结果cnt1,cnt2,pj输出到out.dat中。
     部分程序、读数据函数read_dat(int xx[200])及输出格式已给出。
#include <conio.h>
#include <stdio.h>
#define N 200

void read_dat(int xx[N])
{
 int i,j;
 FILE *fp;
fp=fopen("in.dat","r");
 for(i=0;i<20;i++){
     for(j=0;j<10;j++){
        fscanf(fp,"%d,",&xx[i*10+j]);
        printf("%d ",xx[i*10+j]);
  }
  printf(" ");
 }
 fclose(fp);
}

void main()
{
 int m,sum;
 int cnt1,cnt2,xx[N];
 float pj;
 FILE *fw;
  fw=fopen("out.dat","w");
 clrscr();
 read_dat(xx);
/****************************/
 cnt1=0;  cnt2=0;  pj=0.0;
 for(m=0;m<N;m++)
   if(xx[m]%2) cnt1++;
   else { cnt2++; pj+=xx[m];}
 if(cnt2==0) pj=0;
 else pj/=cnt2;
/****************************/
printf(" cnt1=%d,cnt2=%d,pj=%6.2f ",cnt1,cnt2,pj);
fprintf(fw,"%d %d %6.2f ",cnt1,cnt2,pj);
fclose(fw);
}#p#
*****************************************************************************************
题目95(无忧id 7字符替换题)

函数ReadDat()实现从文件ENG.IN中读取一篇英文文章,存入到字符串数组xx中;请编制函数encryptChar(),按给定的替代关系对数组xx中的所有字符进行替代,仍存入数组xx的对应的位置上,最后调用函数WriteDat()把结果xx输出到文件PS4.DA中。
  替代关系:f(p)=p*11 mod 256(p是数组中某一个字符的ASCII值,f(p)是计算后新字符的ASCII值),如果计算后f(p)值小于等于32或f(p)对应的字符是大写字母,则该字符不变,否则将f(p)所对应的字符进行替代。
  部分源程序存在文件prog1.c中。原始数据文件存放的格式是:每行的宽度均小于80个字符。
  请勿改动主函数main()、读数据函数ReadDat()和输出数据函数WriteDat()的内容。
#include <stdio.h>
#include <string.h>
#include <conio.h>
#include <ctype.h>

unsigned char xx[50][80];
int maxline=0;/*文章的总行数*/
int ReadDat(void);
void WriteDat(void);
void encryptChar()
{ int i,j;
  for(i=0;i<maxline;i++)
   for(j=0;j<strlen(xx[i]);j++)
    if(xx[i][j]*11%256<=32xx[i][j]*11%256>='A'&&xx[i][j]*11%256<='Z') continue;
    else xx[i][j]=xx[i][j]*11%256;
}

void main()
 {
 clrscr();
 if(ReadDat()){
  printf("数据文件ENG.IN不能打开! 07");
  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(xx[i],80,fp)!=NULL){
   p=strchr(xx[i],' ');
   if(p)*p=0;
   i++;
}
maxline=i;
fclose(fp);
return 0;
}

void WriteDat(void)
{
 FILE *fp;
 int i;
 fp=fopen("ps4.dat","w");
 for(i=0;i<maxline;i++){
 printf("%s ",xx[i]);
 fprintf(fp,"%s ",xx[i]);
 }
 fclose(fp);
}
此题还有许多解法,方法可看题8#p#
*****************************************************************************************
★题目96(无忧id 87  字符替换题)

函数ReadDat()实现从文件ENG.IN中读取一篇英文文章,存入到字符串数组xx中;请编制函数encryptChar(),按给定的替代关系对数组xx中的所有字符进行替代,仍存入数组xx的对应的位置上,最后调用函数WriteDat()把结果xx输出到文件PS5.DAT中。
  替代关系:f(p)=p*11mod 256 (p是数组中某一个字符的ASCII值,f(p)是计算后新字符的ASCII值),如果计算后f(p)值小于等于32或f(p)对应的字符是小写字母,则该字符不变,否则将f(p)所对应的字符进行替代。
  部分源程序存在文件prog1.c中。原始数据文件存放的格式是:每行的宽度均小于80个字符。
  请勿改动主函数main()、读数据函数ReadDat()和输出数据函数WriteDat()的内容。
#include <stdio.h>
#include <string.h>
#include <conio.h>
#include <ctype.h>

unsigned char xx[50][80];
int maxline=0;/*文章的总行数*/
int ReadDat(void);
void WriteDat(void);
void encryptChar()
{ int i,j;
  for(i=0;i<maxline;i++)
   for(j=0;j<strlen(xx[i]);j++)
    if(xx[i][j]*11%256<=32xx[i][j]*11%256>='a'&&xx[i][j]*11%256<='z') continue;
    else xx[i][j]=xx[i][j]*11%256;
}

void main()
 {
 clrscr();
 if(ReadDat()){
  printf("数据文件ENG.IN不能打开! 07");
  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(xx[i],80,fp)!=NULL){
   p=strchr(xx[i],' ');
   if(p)*p=0;
   i++;
}
maxline=i;
fclose(fp);
return 0;
}

void WriteDat(void)
{
 FILE *fp;
 int i;
 fp=fopen("ps5.dat","w");
 for(i=0;i<maxline;i++){
 printf("%s ",xx[i]);
 fprintf(fp,"%s ",xx[i]);
 }
 fclose(fp);
}
此题还有许多解法,方法可看题8#p#
*****************************************************************************************
★☆题目97(无忧id 91 字符替换题)

函数ReadDat()实现从文件ENG.IN中读取一篇英文文章,存入到字符串数组xx中;请编制函数encryptChar(),按给定的替代关系对数组xx中的所有字符进行替代,仍存入数组xx的对应的位置上,最后调用函数WriteDat()把结果xx输出到文件PS9.DAT中。
  替代关系:f(p)=p*11 mod 256(p是数组中某一个字符的ASCII值,f(p)是计算后新字符的ASCII值),如果原字符是数字字符0至9或计算后f(p)值小于等于32,则该字符不变,否则将f(p)所对应的字符进行替代。
  部分源程序存在文件prog1.c中。原始数据文件存放的格式是:每行的宽度均小于80个字符。
  请勿改动主函数main()、读数据函数ReadDat()和输出数据函数WriteDat()的内容。
#include <stdio.h>
#include <string.h>
#include <conio.h>
#include <ctype.h>

unsigned char xx[50][80];
int maxline=0;/*文章的总行数*/
int ReadDat(void);
void WriteDat(void);
void encryptChar()
{ int i,j;
  for(i=0;i<maxline;i++)
   for(j=0;j<strlen(xx[i]);j++)
    if(xx[i][j]*11%256<=32xx[i][j]>='0'&&xx[i][j]<='9') continue;
    else xx[i][j]=xx[i][j]*11%256;
}

void main()
 {
 clrscr();
 if(ReadDat()){
  printf("数据文件ENG.IN不能打开! 07");
  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(xx[i],80,fp)!=NULL){
   p=strchr(xx[i],' ');
   if(p)*p=0;
   i++;
}
maxline=i;
fclose(fp);
return 0;
}

void WriteDat(void)
{
 FILE *fp;
 int i;
 fp=fopen("ps9.dat","w");
 for(i=0;i<maxline;i++){
 printf("%s ",xx[i]);
 fprintf(fp,"%s ",xx[i]);
 }
 fclose(fp);
}
此题还有许多解法,方法可看题8#p#
*****************************************************************************************
题目98(无忧id  85 字符替题)
(无忧id  85只是将替代关系改为了f(p)=p*11 mod 256))

函数ReadDat()实现从文件ENG.IN中读取一篇英文文章,存入到字符串数组xx中;请编制函数encryptChar(),按给定的替代关系对数组xx中的所有字符进行替代,仍存入数组xx的对应的位置上,最后调用函数WriteDat()把结果xx输出到文件PS3.DAT中。
  替代关系:f(p)=p*17 mod 256(p是数组中某一个字符的ASCII值,f(p)是计算后新字符的ASCII值),如果计算后f(p)值小于等于32或其ASCII值是奇数,则该字符不变,否则将f(p)所对应的字符进行替代。
  部分源程序存在文件prog1.c中。原始数据文件存放的格式是:每行的宽度均小于80个字符。
  请勿改动主函数main()、读数据函数ReadDat()和输出数据函数WriteDat()的内容。
#include <stdio.h>
#include <string.h>
#include <conio.h>
#include <ctype.h>

unsigned char xx[50][80];
int maxline=0;/*文章的总行数*/
int ReadDat(void);
void WriteDat(void);
void encryptChar()
{ int i,j;
  for(i=0;i<maxline;i++)
   for(j=0;j<strlen(xx[i]);j++)
    if(xx[i][j]*17%256<=32(xx[i][j]*17%256)%2!=0) continue;
    else xx[i][j]=xx[i][j]*17%256;
}

void main()
 {
 clrscr();
 if(ReadDat()){
  printf("数据文件ENG.IN不能打开! 07");
  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(xx[i],80,fp)!=NULL){
   p=strchr(xx[i],' ');
   if(p)*p=0;
   i++;
 }
maxline=i;
fclose(fp);
return 0;
}

void WriteDat(void)
{
 FILE *fp;
 int i;

 fp=fopen("ps3.dat","w");
 for(i=0;i<maxline;i++){
 printf("%s ",xx[i]);
 fprintf(fp,"%s ",xx[i]);
 }
 fclose(fp);
}
此题还有许多解法,方法可看题8#p#
*****************************************************************************************
★题目99(无忧id  74结构体排列题)

已知在文件IN.DAT中存有100个产品销售记录,每个产品销售记录由产品代码dm(字符型4位),产品名称mc(字符型10位),单价dj(整型),数量sl(整型),金额je(长整型)五部分组成。其中:金额=单价*数量计算得出。函数ReadDat()是读取这100个销售记录并存入结构数组sell中。请编制函数SortDat(),其功能要求:按金额从小到大进行排列,若金额相等,则按产品代码从小到大进行排列,最终排列结果仍存入结构数组sell中,最后调用函数WriteDat()把结果输出到文件OUT1.DAT中。
     部分源程序存在文件prog1.c中。
  请勿改动主函数main()、读数据函数ReadDat()和输出数据函数WriteDat()的内容。
#include <stdio.h>
#include <mem.h>
#include <string.h>
#include <conio.h>
#include <stdlib.h>
#define MAX 100
typedef struct{
  char dm[5];  /*产品代码*/
  char mc[11]; /*产品名称*/
  int dj;      /*单价*/
  int sl;      /*数量*/
  long je;     /*金额*/
}PRO;
PRO sell[MAX];
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(sell[i].je>sell[j].jesell[i].je==sell[j].je&&strcmp(sell[i].dm,sell[j].dm)>0)
       {xy=sell[i];sell [i]=sell[j];sell[j]=xy;}
}

void main()
 {
 memset(sell,0,sizeof(sell));
 ReadDat();
 SortDat();
 WriteDat();
 }

void ReadDat()
{
 FILE *fp;
 char str[80],ch[11];
 int i;

 fp=fopen("IN.DAT","r");
 for(i=0;i<100;i++){
   fgets(str,80,fp);
   memcpy(sell[i].dm,str,4);
   memcpy(sell[i].mc,str+4,10);
   memcpy(ch,str+14,4);ch[4]=0;
   sell[i].dj=atoi(ch);
   memcpy(ch,str+18,5);ch[5]=0;
   sell[i].sl=atoi(ch);
   sell[i].je=(long)sell[i].dj*sell[i].sl;
  }
 fclose(fp);
}

void WriteDat()
{
 FILE *fp;
 int i;

 fp=fopen("OUT1.DAT","w");
 for(i=0;i<100;i++){
  printf("%s %s %4d %5d %5d ", sell[i].dm,sell[i].mc,sell[i].dj,sell[i].sl,sell[i].je);
  fprintf(fp,"%s %s %4d %5d %5d ", sell[i].dm,sell[i].mc,sell[i].dj,sell[i].sl,sell[i].je);
 }
 fclose(fp);
}#p#


******************************************************************
eng.in(输入文件)
  ISAM enhances the functionality of your programs through its
flexibility. If you add a section to a book, remove a few pages,
or rearrange paragraphs or sections, you have to recreate your
index, since the keywords must appear in relation to each other.
In this case, the relationship of the keywords to each other is
alphabetic order. A ISAM index changes automatian employee, or
change anything in a record, ISAM immediately updates all indexes.
  You can create an index on any field, on several fields to be used
together, or on parts thereof, that you want to use as a key. The
keys in indexes allow you quick access to specific records and define
orders for sequential processing of a ISAM file. After you no longer
need an index, you can delete it. Addition and indexes have no effect
on the data records or on other indexes.
  You may want a field in field in each record to uniquely identify that
record from all other records in the file. For example, the Employee
Number field is unique if you do not assign the same number to two
different employees, and you never reassign these numbers to other
employees. If you wish to find or modify the record belonging to a
specific employee, this unique field saves the thouble of determining
whether you have the correct record.
  If you do not have a unique field, you must find the first record
the matches your key and determine whether the record is the one you
want. If it is not the correct one, you must search again to find others.
  If you know that you have a unique field within your records, you
can include this fact in the key description, and ISAM will allow only
unique keys. For example, if you specify that the employee numbers are
unique, ISAM only lets you add records to the file for, or change
numbers to, employee numbers that do not alreadly exist int file.


****************************************************************************
ps6.out(输出文件)
ISAMenhancesfunctionalityitsofprogramsthethroughyour
Ifaaaaddbookfewflexibilitypagesremovesectiontoyou
haveororparagraphsrearrangerecreatesectionstoyouyour
appeareachinindexkeywordsmustotherrelationsincetheto
Incaseeachiskeywordsofotherrelationshipthethethisto
AISAMalphabeticautomatianchangesemployeeindexororder
ISAMaallanythingchangeimmediatelyinindexesrecordupdates
Youananybecancreatefieldfieldsindexononseveraltoused
Theaaskeyonorpartsthatthereoftotogetherusewantyou
accessallowanddefineinindexeskeysquickrecordsspecifictoyou
AfterISAMafileforlongernoofordersprocessingsequentialyou
Additionanandcandeleteeffecthaveindexindexesitneednoyou
dataindexesononorotherrecordsthe
Youaeachfieldfieldidentifyininmayrecordthattouniquelywant
EmployeeForallexamplefilefrominotherrecordrecordsthethe
Numberassigndofieldifisnotnumbersamethetotwouniqueyou
anddifferentemployeesnevernumbersotherreassignthesetoyou
Ifabelongingemployeesfindmodifyorrecordthetotowishyou
determiningemployeefieldofsavesspecificthethisthoubleunique
correcthaverecordthewhetheryou
Ifadofieldfindfirsthavemustnotrecordtheuniqueyouyou
anddetermineiskeymatchesonerecordthethethewhetheryouyour
Ifagaincorrectfindisitmustnotoneotherssearchthetowantyou
Ifafieldhaveknowrecordsthatuniquewithinyouyouyouyour
ISAMallowandcandescriptionfactinincludekeyonlythethiswill
Forareemployeeexampleifkeysnumbersspecifythattheuniqueyou
ISAMaddchangefileforletsonlyorrecordsthetouniqueyou
Alreadlydoemployeeexistfileintnotnumbersnumbersthatto

 

上下文章:

 

上一篇文章: 数据库设计经验谈5:各种小技巧(终) 下一篇文章: 三级C语言程序设计上机考试习题集(81-90)

相关文章:

  • 谷歌百科全书网站Knol推出多种语言服务
  • 火星文:最时髦的网络语言
  • 无纸化考试流程轻松实现
  • ORACLE OCP认证的各门考试科目
  • Oracle认证专家考试科目一览表

相关软件:

  • 易语言 V4.04 简体中文正式版
  • 执业药师考试宝典 V6.1 中药版
  • 执业药师考试宝典 V6.1 西药版
  • 报检员考试全程通 V6.5
  • 春浪考试系统ASP版 V3.66
  • 计算机等级考试训练模拟软件(三级数据库技术) V1.01

 

快速导航

  • 网络学院
  • 精品汇聚
  • 字体下载
  • 教程下载
  • ASP源码
  • PHP源码
  • Net源码
  • JSP 源码

计算机等级考试分类导航

  • 计算机等级考试动态
  • 计算机一级考试
  • 计算机二级考试
  • 计算机三级考试
  • 计算机四级考试

本类经典文章推荐

  • 三级PC技术寻址方式的复习 (4)
  • 三级PC技术寻址方式的复习 (3)
  • 三级PC技术寻址方式的复习
  • 三级PC技术寻址方式的复习 (2)
  • 三级网络技术全真标准预测试卷(二...
  • 全国计算机等级考试三级笔试试卷数...
  • 全国计算机等级考试三级笔试试卷数...
  • 2005年计算机等级考试三级上机题库...
  • 2003年4月全国计算机等级考试三级...
  • 2005年计算机等级考试三级上机题库...

计算机三级考试阅读排行

  • SQL数据库触发器实例讲解
  • 三级网络技术全真标准预测试卷(二...
  • 全国计算机等级考试三级笔试试卷数...
  • 南开计算机等级考试上机100题(三...
  • 全国计算机等级考试三级笔试试卷数...
  • 2005年计算机等级考试三级上机题库...
  • 数据结构第10章例题与答案
  • 三级C语言程序设计上机考试习题集...
  • 全国计算机等级考试三级考试C/C++...
  • 全国计算机等级考试三级A笔试试卷

计算机等级考试阅读总排行

  • 全国计算机等级考试一级模拟试题01
  • 全国计算机等级考试一级模拟试题10
  • 全国计算机等级考试一级模拟试题08
  • 全国计算机等级考试一级考试最新模...
  • 全国计算机等级考试一级模拟试题02
  • 全国计算机等级考试一级模拟试题07
  • 全国计算机等级考试上机考试应试技...
  • 一级(WINDOWS)试题解析-Word篇
  • 全国计算机等级考试一级模拟试题06
  • 全国计算机等级考试一级模拟试题03

广告位置

字母检索 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 回到顶部

关于我们 | 版权声明 | 免责条款 | 广告联系 | 软件发布 | 下载帮助 | 下载排行 | 网站地图 | 特别鸣谢 | 友情连接

copyright; 2005-2008 D9soft.com 第九软件网 版权所有