在线情况
13
  • 头像
  • 侠之大者
  • 级别
  • 门派
  • 会员认证会员
  • 声望+1
  • 财富115
  • 银两1383
  • 经验39591
  • 文章1360
  • 注册2004-03-27
我能打的开啊~
青青子衿,悠悠我心。纵我不往,子宁不嗣音?青青子佩,悠悠我思。纵我不往,子宁不来?挑兮达兮,在城阙兮。一日不见,如三月兮。
[img]http://www.new-adhesive.com/img/20041125110961.jpg[/img]
在线情况
14
  • 头像
  • 级别
  • 门派
  • 声望+4
  • 财富38
  • 银两1542
  • 经验5209
  • 文章397
  • 注册2004-05-30
down VB.NET??累死了吧,有这时间学都学得差不多了,真想搞软件自己花点银子又何妨?
灰色轨迹感谢您的参与
在线情况
15
  • 头像
  • 阿里修斯
  • 级别
    • 财富3
    • 银两26595
    • 经验3299
    • 文章486
    • 注册2004-05-22
    先谢谢头衔:离欲阿修罗

     
     

    孤竹无名  了阿

    相信爱情了?
    传说花的盛开可以暖热寒水,以此来让雁重生,于是所有的花儿都看似虔诚地祈祷,可是最后---只有蔷薇花开了~
    可是以它自己微薄的力量就能拯救雁吗?它为了自己所相信的爱情,耗尽了所有的能量,却只能和雁一起沉入寒水...
    在线情况
    16
    • 头像
    • 级别
      • 银两1
      • 经验3
      • 文章1
      • 注册2005-01-06
      先谢谢咯!~~~~~~~你能帮我找到"运动会分数统计"这个数据结构课程设计在哪有源代码下么[em06]
      灰色轨迹感谢您的参与
      在线情况
      17
      • 头像
      • 离欲阿修罗
      • 级别
      • 门派
      • 声望+48
      • 财富102756
      • 银两1809175
      • 经验138295
      • 文章2275
      • 注册2004-06-26
      不知道你要的是不是下面这个啊
      c的源代码 Turbo C 2.0 测试正常
      --------------------------------
      #include<stdio.h>
      struct school
      {char schoolmark;
       char studentname[20];
      char sex;
      int sportnumber;
      int position;
      int score;
      struct school *next;
      };
      struct school *head,*this,*new;
      main()
      {char ch;
      int flag=1;
      head=NULL;
      while(flag)
      {printf("\nType 'E'or'e'to enter the record\n");
       printf("type'L'or'l'to list the total score\n");
      printf("type'D'or'd'to display the every record.\n");
       ch=getchar();
           getchar();
      switch(ch)
      {case 'e':
       case 'E':new_record();break;
       case 'L':
       case 'l':listall();break;
       case 'D':
       case 'd':displayevery();break;
       default:flag=0;
      }}
      }
       new_record(void)
      {char numstr[20];
      new=(struct school*)malloc(sizeof(struct school));/*分配结点*/
      if(head==NULL)
      head=new;
      else{this=head;
      while(this->next!=NULL)
      this=this->next;
      this->next=new;
      }this=new;
      printf("\nEnter schoolmark like'a','b','c','d':");/*输入校名,以a,b,c,d为例*/
      this->schoolmark=getchar();getchar();
      printf("\nEnter studnetname:");/*输入学生姓名*/
      gets(this->studentname);
      printf("\n SEX:if boy enter 't',if girl enter 'f':");
      this->sex=getchar();getchar();/*输入性别*/
      printf("\nEnter sportnumber(if boy from 1 to 3,if girl from 4 to 5):");/*输入项目编号*/
      gets(numstr);
      this->sportnumber=atoi(numstr);
      printf("\nEnter position(if sportnumber is odd,there is 5 positions;even has 3 positions):");/*输入比赛名次*/
      gets(numstr);
      this->position=atoi(numstr);
      printf("\nEnter score(5positions to7,5,3,2,1;3position to 5,3,2):");/*输入相应的成绩*/
      gets(numstr);
      this->score=atoi(numstr);
      this->next=NULL;
      }
      listall(void)
      {int amalescore=0,afemalescore=0;
      int bmalescore=0,bfemalescore=0;
      int cmalescore=0,cfemalescore=0;
      int dmalescore=0,dfemalescore=0;
      if(head==NULL)
      {printf("\nEmpty list\n");
      return;}
      this=head;
      do{
      if(this->schoolmark=='a')
         {
         if(this->sex=='t')
          amalescore+=this->score;/*统计a学校男子总分*/
         else afemalescore=afemalescore+this->score;/*统计a学校女子总分*/}
        if(this->schoolmark=='b')
         {
         if(this->sex=='t')
          bmalescore+=this->score;/*统计b学校男子总分*/
         else bfemalescore=bfemalescore+this->score;/*统计b学校男子总分*/}
      if(this->schoolmark=='c')
         {
         if(this->sex=='t')
         amalescore+=this->score;/*统计c学校男子总分*/
         else cfemalescore=cfemalescore+this->score;/*统计c学校男子总分*/}
      if(this->schoolmark=='d')
         {
         if(this->sex=='t')
          amalescore+=this->score;/*统计d学校男子总分*/
         else dfemalescore=dfemalescore+this->score;/*统计d学校男子总分*/}
      this=this->next;
      }while(this!=NULL);
      printf("\nthe Final Result of a school\n");/*打印a学校的成绩*/
      printf("the male score is:%d\n",amalescore);
      printf("the female score is:%d\n",afemalescore);
      printf("the total score is:%d\n",amalescore+afemalescore);
      printf("\nthe Final Result of b school\n");/*打印b学校的成绩*/
      printf("the male score is:%d\n",bmalescore);
      printf("the female score is:%d\n",bfemalescore);
      printf("the total score is:%d\n",bmalescore+bfemalescore);
      printf("\nthe Final Result of c school\n");/*打印c学校的成绩*/
      printf("the male score is:%d\n",cmalescore);
      printf("the female score is:%d\n",cfemalescore);
      printf("the total score is:%d\n",cmalescore+cfemalescore);
      printf("\nthe Final Result of d school\n");/*打印d学校的成绩*/
      printf("the male score is:%d\n",dmalescore);
      printf("the female score is:%d\n",dfemalescore);
      printf("the total score is:%d\n",dmalescore+dfemalescore);
      }
      displayevery(void)
      {if(head==NULL)
      {printf("\nEmpty list\n");
      return;}
      this=head;
      do{printf("record of a school\n");
        if(this->schoolmark=='a')
          {
           printf("studentname:%s\n",this->studentname);
            printf("sex:%c\n",this->sex);
            printf("sportnumber:%d\n",this->sportnumber);
            printf("position:%d\n",this->position);
           printf("score:%d\n",this->score);
            }
          printf("record of b school\n");
      if(this->schoolmark=='b')
          {
            printf("studentname:%s\n",this->studentname);
            printf("sex:%c\n",this->sex);
            printf("sportnumber:%d\n",this->sportnumber);
            printf("position:%d\n",this->position);
           printf("score:%d\n",this->score);
            }
          printf("record of c school\n");
      if(this->schoolmark=='c')
          {
            printf("studentname:%s\n",this->studentname);
            printf("sex:%c\n",this->sex);
            printf("sportnumber:%d\n",this->sportnumber);
            printf("position:%d\n",this->position);
           printf("score:%d\n",this->score);
            }
         printf("\nrecord of d school\n");
       if(this->schoolmark=='d')
          {printf("record of d school");
            printf("studentname:%s\n",this->studentname);
            printf("sex:%c\n",this->sex);
            printf("sportnumber:%d\n",this->sportnumber);
            printf("position:%d\n",this->position);
           printf("score:%d\n",this->score);
            }
      this=this->next;
      }while(this!=NULL);
      }
      [imga]../images/upload/2006/10/14/203457.jpg[/imga]
      [imga]../images/upload/2006/10/14/203700.jpg[/imga]
      第一张叫做“执着”  尽管一只鸽子也没有 但她还是一直在努力
      第二张叫做“快乐”  仿佛 就要飞起来了  不是她的心已经飞起来了
      在线情况
      18
      • 头像
      • 级别
      • 门派
      • 银两39
      • 经验2271
      • 文章150
      • 注册2004-12-25
      wps2txt
      [img]http://img.poco.cn/photo/20060729/342291192220060729112021.jpg[/img]
      在线情况
      19
      • 头像
      • 离欲阿修罗
      • 级别
      • 门派
      • 声望+48
      • 财富102756
      • 银两1809175
      • 经验138295
      • 文章2275
      • 注册2004-06-26
      [QUOTE][b]下面引用由[u]zhaoyuan863[/u]发表的内容:[/b]

      wps2txt[/QUOTE]

      http://www.csdn.net/cnshare/soft/6/6958.shtm
      DOS下运行,将旧版DOS下的金山WPS文件转为文本文件,省去了你去装WPS的麻烦
      [imga]../images/upload/2006/10/14/203457.jpg[/imga]
      [imga]../images/upload/2006/10/14/203700.jpg[/imga]
      第一张叫做“执着”  尽管一只鸽子也没有 但她还是一直在努力
      第二张叫做“快乐”  仿佛 就要飞起来了  不是她的心已经飞起来了
      在线情况
      20
      • 头像
      • 级别
        • 银两4
        • 经验14
        • 文章3
        • 注册2005-01-28
        我想要一个专门杀传奇木马程序的软件啊,能不能搞到??我号老被盗
        我是一只笨笨鸟,想要飞却怎么也飞不高!
        在线情况
        21
        • 头像
        • 玫瑰¢情人☆冰
        • 级别
        • 门派
        • 财富127
        • 银两79040
        • 经验5772
        • 文章1482
        • 注册2005-01-23
        我想要猎人MM 外挂哪里有?? 我还想要。。。。。。还想要
        尘缘多纷扰,
          寸心意难决,
            回首伤心处,
              正是情太切。
        [IMGA]http://photoimg3.qq.com/cgi-bin/load_pic?verify=c2jwvW1iwiJ%2Fd3L5vJgXOQ%3D%3D[/IMGA]
        在线情况
        22
        • 头像
        • 离欲阿修罗
        • 级别
        • 门派
        • 声望+48
        • 财富102756
        • 银两1809175
        • 经验138295
        • 文章2275
        • 注册2004-06-26
        20楼
        http://www4.skycn.com/soft/3252.html
        木马克星 还不错了
        [imga]../images/upload/2006/10/14/203457.jpg[/imga]
        [imga]../images/upload/2006/10/14/203700.jpg[/imga]
        第一张叫做“执着”  尽管一只鸽子也没有 但她还是一直在努力
        第二张叫做“快乐”  仿佛 就要飞起来了  不是她的心已经飞起来了
        在线情况
        23
        • 头像
        • 流氓甲
        • 级别
          • 财富3
          • 银两21
          • 经验6125
          • 文章169
          • 注册2005-02-01
          楼主大大,我一直在找超级转换秀8.0的破解版或注册码或注册机,帮帮忙啦。小生先谢过了。
          灰色轨迹感谢您的参与
          在线情况
          24
          • 头像
          • 侠之大者
          • 级别
          • 门派
          • 会员认证会员
          • 声望+1
          • 财富115
          • 银两1383
          • 经验39591
          • 文章1360
          • 注册2004-03-27
          [QUOTE][b]下面引用由[u]羽灵真人[/u]发表的内容:[/b]

          楼主大大,我一直在找超级转换秀8.0的破解版或注册码或注册机,帮帮忙啦。小生先谢过了。[/QUOTE]

          好象没到8.0吧,这里有个白金完整版+注册机
          http://www.binok.net/bbs/plug-ins/download/list.asp?id=72
          青青子衿,悠悠我心。纵我不往,子宁不嗣音?青青子佩,悠悠我思。纵我不往,子宁不来?挑兮达兮,在城阙兮。一日不见,如三月兮。
          [img]http://www.new-adhesive.com/img/20041125110961.jpg[/img]
          Powered by LeadBBS 9.2 .
          Page created in 0.3047 seconds with 5 queries.