c语言实现足球比赛积分统计系统

2024-01-12 01:50

本文主要是介绍c语言实现足球比赛积分统计系统,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

/* 足球比赛积分统计系统作者:施瑞文时间:2018.2
*/ //为简单化,这里没有加上文件的操作 
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include<windows.h>
#include<conio.h>
#define LEN sizeof(match)
typedef struct football
{char name[20];//[足球]队名int num[4];//num[0]为单支球队需比赛场数, num[1]为赢场数,num[2]为平场数,num[3]为负场数int goal;//进球数int lose;//失球数int integral;//积分int pure;//净胜球struct football *next; 
}match;
void menu();//声明菜单函数 
match *creat();//输入球队信息 
void print(match *head);//排序 
match *Add(match *head);//增加球队信息
match *Amend(match *head);//修改球队信息 
match *Del(match *head);//删除球队信息 
void End();//退出该软件 int n=0;//记录节点长度 
match *p2;void toxy(int x, int y)//将光标移动到X,Y坐标处
{COORD pos = { x , y };HANDLE Out = GetStdHandle(STD_OUTPUT_HANDLE);SetConsoleCursorPosition(Out, pos);
}void menu()
{system("cls");//清屏 system("color 72");//颜色 toxy(30,6);printf("--------------------MENU-----------------------\n");toxy(30,8);printf("|  1.   Record the information of this match  |\n");toxy(30,10);printf("|  2.   Add the information of this match     |\n");toxy(30,12);printf("|  3.   Check the information of this match   |\n");toxy(30,14);printf("|  4.   delete the information of the match   |\n");toxy(30,16);printf("|  5.   Amend the information of the match    |\n");toxy(30,18);printf("|  6.   End this operation                    |\n");toxy(30,20);printf("-----------------------------------------------\n");toxy(30,22);printf("What are you want to do ? Input please:");
}match *creat()
{system("cls");//清屏 system("color 74");//颜色 int t,n=0;match *head,*p1;p2=p1=(match *)malloc(LEN);head=NULL;/*录入足球队名,比赛场数,得、失 球数和进球积分*/ /*输入第一个节点数据 */printf("Enter the total number of the football teams:");//参赛的球队数量 scanf("%d",&t);while(n!=t){n++; printf("the name of team %d :",n);//球队名 scanf("%s",p1->name);printf("team %d win round(s):",n);//该球队赢局场数 scanf("%d",&p1->num[1]);printf("team %d draw round(s):",n);//该球队平局场数 scanf("%d",&p1->num[2]);printf("team %d goal:",n);scanf("%d",&p1->goal);printf("team %d lose:",n);scanf("%d",&p1->lose);p1->integral=p1->num[1]*2+p1->num[2];p1->pure=p1->goal-p1->lose;if(n==1){head=p1;}else{p2->next=p1;p2=p1;}p1=(match *)malloc(LEN);}p2->next=NULL;return head;
}match *Add(match *head)//增加球队 
{system("cls");//清屏 system("color 72");//颜色 match *p,*q,*newhead;int x,y=0;newhead=NULL;p=q=(match *)malloc(LEN);printf("How many teams you want to add?Input please:");scanf("%d",&x);while(y!=x){y++;printf("the name of team %d :",y);//球队名 scanf("%s",p->name);printf("team %d win round(s):",y);//该球队赢局场数 scanf("%d",&p->num[1]);printf("team %d draw round(s):",y);//该球队平局场数 scanf("%d",&p->num[2]);printf("the number of team %d goal:",y);scanf("%d",&p->goal);printf("the number of team %d lose:",y);scanf("%d",&p->lose);p->integral=p->num[1]*2+p->num[2];p->pure=p->goal-p->lose;if(y==1){newhead=p;}else{q->next=p;q=p;}p=(match *)malloc(LEN);}q->next=NULL;p2->next=newhead;//让新增加的信息接入原有链表的后面 return head;
} match *Amend(match *head)//修改信息 
{system("cls");system("color 72");do{match *p=head;char name[10];printf("Please input the team's name which you want to modify:");gets(name);while(p!=NULL&&strcmp(p->name,name)!=0){p=p->next;}if(p!=NULL){toxy(25,4); printf("team_name    win      draw      goal     lose     integral\n");toxy(25,6);printf("|%3s%10d%10d%10d%10d%10d|\n",p->name,p->num[1],p->num[2],p->goal,p->lose,p->integral);printf("Enter the new information please;\n");printf("the name of new team :");//球队名 scanf("%s",p->name);printf("team win round(s):");//该球队赢局场数 scanf("%d",&p->num[1]);printf("team  draw round(s):");//该球队平局场数 scanf("%d",&p->num[2]);printf("the number of new team's goal:");scanf("%d",&p->goal);printf("the number of  new team's lose:");scanf("%d",&p->lose);p->integral=p->num[1]*2+p->num[2];p->pure=p->goal-p->lose;break;}else{printf("Input error!Please input again:");}}while(1);return head;
}match *Del(match *head)//删除信息 
{system("cls");//清屏 do{match *p=head,*pre=NULL;//pre是p的前驱结点 char name[10];printf("Please input the team's name which you want to delete;");gets(name);while(p!=NULL&&strcmp(p->name,name)!=0){pre=p;p=p->next;}if(p!=NULL){if(pre==NULL){head=p->next;}else{pre->next=p->next;}	free(p);break;}else{printf("Input error!Please input again:");}}while(1);return head;
}void End()
{system("cls");system("color 74");toxy(20,10);printf("Thanks for your using!^-^");exit(0);//退出 getch();
}void print(match *head)
{system("cls");system("color 74");match *p,*q,t1,t2,t3,*pt;for(p=head;p!=NULL;p=p->next)//球队排序,冒泡法排序 ,关于链表的排序有点小复杂哦~ {for(q=p->next;q!=NULL;q=q->next)     //这里有3重排序 {if(p->integral<q->integral){t1=*p;*p=*q;*q=t1;	pt=p->next;p->next=q->next;q->next=pt;}else if(p->integral==q->integral){if(p->pure<q->pure){t2=*p;*p=*q;*q=t2;pt=p->next;p->next=q->next;q->next=pt;}else if(p->pure==q->pure){if(p->goal<q->goal){t3=*p;*p=*q;*q=t3;pt=p->next;p->next=q->next;q->next=pt;}}}}}p=head;//重新让p指向第一个结点 toxy(20,4);printf("--------------------the football match imformation----------------------\n");toxy(20,6);printf("team_name    win      draw      goal     lose     integral\n");int m=8;while(p!=NULL){toxy(20,m);printf("|%3s%10d%10d%10d%10d%10d|\n",p->name,p->num[1],p->num[2],p->goal,p->lose,p->integral);p=p->next;m+=2;}printf("\nPlease press any key return to MENU. ");getch();}int main()
{match *head;char x;do{system("cls");system("color 72");menu();x=getch();switch(x){case '1':head=creat();break;case '2':head=Add(head);break;case '3':print(head);break;case '4':head=Del(head);break;case '5':head=Amend(head);break;case '6':End();break;default:printf("Input error!Please input again:");	}}while(1);//永远为真 return 0;
}

这篇关于c语言实现足球比赛积分统计系统的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/596413

相关文章

Springboot处理跨域的实现方式(附Demo)

《Springboot处理跨域的实现方式(附Demo)》:本文主要介绍Springboot处理跨域的实现方式(附Demo),具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不... 目录Springboot处理跨域的方式1. 基本知识2. @CrossOrigin3. 全局跨域设置4.

Spring Boot 3.4.3 基于 Spring WebFlux 实现 SSE 功能(代码示例)

《SpringBoot3.4.3基于SpringWebFlux实现SSE功能(代码示例)》SpringBoot3.4.3结合SpringWebFlux实现SSE功能,为实时数据推送提供... 目录1. SSE 简介1.1 什么是 SSE?1.2 SSE 的优点1.3 适用场景2. Spring WebFlu

基于SpringBoot实现文件秒传功能

《基于SpringBoot实现文件秒传功能》在开发Web应用时,文件上传是一个常见需求,然而,当用户需要上传大文件或相同文件多次时,会造成带宽浪费和服务器存储冗余,此时可以使用文件秒传技术通过识别重复... 目录前言文件秒传原理代码实现1. 创建项目基础结构2. 创建上传存储代码3. 创建Result类4.

SpringBoot日志配置SLF4J和Logback的方法实现

《SpringBoot日志配置SLF4J和Logback的方法实现》日志记录是不可或缺的一部分,本文主要介绍了SpringBoot日志配置SLF4J和Logback的方法实现,文中通过示例代码介绍的非... 目录一、前言二、案例一:初识日志三、案例二:使用Lombok输出日志四、案例三:配置Logback一

Python如何使用__slots__实现节省内存和性能优化

《Python如何使用__slots__实现节省内存和性能优化》你有想过,一个小小的__slots__能让你的Python类内存消耗直接减半吗,没错,今天咱们要聊的就是这个让人眼前一亮的技巧,感兴趣的... 目录背景:内存吃得满满的类__slots__:你的内存管理小助手举个大概的例子:看看效果如何?1.

Python+PyQt5实现多屏幕协同播放功能

《Python+PyQt5实现多屏幕协同播放功能》在现代会议展示、数字广告、展览展示等场景中,多屏幕协同播放已成为刚需,下面我们就来看看如何利用Python和PyQt5开发一套功能强大的跨屏播控系统吧... 目录一、项目概述:突破传统播放限制二、核心技术解析2.1 多屏管理机制2.2 播放引擎设计2.3 专

Python实现无痛修改第三方库源码的方法详解

《Python实现无痛修改第三方库源码的方法详解》很多时候,我们下载的第三方库是不会有需求不满足的情况,但也有极少的情况,第三方库没有兼顾到需求,本文将介绍几个修改源码的操作,大家可以根据需求进行选择... 目录需求不符合模拟示例 1. 修改源文件2. 继承修改3. 猴子补丁4. 追踪局部变量需求不符合很

idea中创建新类时自动添加注释的实现

《idea中创建新类时自动添加注释的实现》在每次使用idea创建一个新类时,过了一段时间发现看不懂这个类是用来干嘛的,为了解决这个问题,我们可以设置在创建一个新类时自动添加注释,帮助我们理解这个类的用... 目录前言:详细操作:步骤一:点击上方的 文件(File),点击&nbmyHIgsp;设置(Setti

SpringBoot实现MD5加盐算法的示例代码

《SpringBoot实现MD5加盐算法的示例代码》加盐算法是一种用于增强密码安全性的技术,本文主要介绍了SpringBoot实现MD5加盐算法的示例代码,文中通过示例代码介绍的非常详细,对大家的学习... 目录一、什么是加盐算法二、如何实现加盐算法2.1 加盐算法代码实现2.2 注册页面中进行密码加盐2.

MySQL大表数据的分区与分库分表的实现

《MySQL大表数据的分区与分库分表的实现》数据库的分区和分库分表是两种常用的技术方案,本文主要介绍了MySQL大表数据的分区与分库分表的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有... 目录1. mysql大表数据的分区1.1 什么是分区?1.2 分区的类型1.3 分区的优点1.4 分