一级毛片免费不卡在线视频,国产日批视频免费在线观看,菠萝菠萝蜜在线视频免费视频,欧美日韩亚洲无线码在线观看,久久精品这里精品,国产成人综合手机在线播放,色噜噜狠狠狠综合曰曰曰,琪琪视频

計算機等級考試三級網(wǎng)絡(luò)技術(shù)試題

時間:2024-05-11 17:50:48 學(xué)人智庫 我要投稿

計算機等級考試三級網(wǎng)絡(luò)技術(shù)試題

  已知文件IN.DAT中存有100個產(chǎn)品銷售記錄,每個產(chǎn)品銷售記錄由產(chǎn)品代碼dm(字符型4位)、產(chǎn)品名稱mc(字符型10位)、單價dj(整型)、數(shù)量sl(整型)、金額je(長整型)幾部分組成。其中:金額=單價×數(shù)量。函數(shù)ReadDat()的功能是讀取這100個銷售記錄并存入結(jié)構(gòu)數(shù)組 sell中。請編制函數(shù)SortDat(),其功能要求:按產(chǎn)品名稱從大到小進行排列,若產(chǎn)品名稱相同,則按金額從小到大進行排列,最終排列結(jié)果仍存入結(jié)構(gòu)數(shù)組sell中,最后調(diào)用函數(shù)WriteDat()把結(jié)果輸出到文件OUT.DAT中。

計算機等級考試三級網(wǎng)絡(luò)技術(shù)試題

  注意:部分源程序已給出。請勿改動主函數(shù)main()、讀函數(shù)ReadDat()和寫函數(shù)WriteDat()的內(nèi)容。

  【試題程序】

  #include

  #include

  #include

  #include

  #define MAX 100

  typedef struct

  {

  char dm[5];  /* 產(chǎn)品代碼 */

  char mc[11]; /* 產(chǎn)品名稱 */

  int dj; /* 單價 */

  int sl; /* 數(shù)量 */

  long je; /* 金額 */

  } PRO;

  PRO sell[MAX];

  void ReadDat();

  void WriteDat();

  void SortDat()

  {

  }

  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("OUT.DAT", "w");

  for(i = 0; i < 100; i++)

  {

  fprintf(fp, "%s %s %4d %5d %10ld\n", sell[i].dm, sell[i].mc, sell[i].dj, sell[i].sl, sell[i].je);

  }

  fclose(fp);

  }

http://www.oriental01.com/

【計算機等級考試三級網(wǎng)絡(luò)技術(shù)試題】相關(guān)文章:

計算機等級考試三級網(wǎng)絡(luò)技術(shù)上機模擬試題(2)10-18

全國計算機等級考試三級網(wǎng)絡(luò)技術(shù)考試大綱08-15

2007年4月全國計算機等級考試三級網(wǎng)絡(luò)技術(shù)筆試試題及答案09-20

2006年9月全國計算機等級考試三級網(wǎng)絡(luò)技術(shù)筆試試題及答案09-08

2005年9月全國計算機等級考試三級網(wǎng)絡(luò)技術(shù)筆試試題及答案10-13

計算機等級考試三級(C語言)上機考試試題總結(jié)08-18

計算機等級考試三級上機考試流程(2)08-05

2008年9月全國計算機等級考試三級網(wǎng)絡(luò)技術(shù)標準預(yù)測試卷試題二07-07

2008年9月全國計算機等級考試三級網(wǎng)絡(luò)技術(shù)標準預(yù)測試卷試題一07-20

全國計算機等級考試試題及答案07-02