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

相关文章

不懂推荐算法也能设计推荐系统

本文以商业化应用推荐为例,告诉我们不懂推荐算法的产品,也能从产品侧出发, 设计出一款不错的推荐系统。 相信很多新手产品,看到算法二字,多是懵圈的。 什么排序算法、最短路径等都是相对传统的算法(注:传统是指科班出身的产品都会接触过)。但对于推荐算法,多数产品对着网上搜到的资源,都会无从下手。特别当某些推荐算法 和 “AI”扯上关系后,更是加大了理解的难度。 但,不了解推荐算法,就无法做推荐系

基于人工智能的图像分类系统

目录 引言项目背景环境准备 硬件要求软件安装与配置系统设计 系统架构关键技术代码示例 数据预处理模型训练模型预测应用场景结论 1. 引言 图像分类是计算机视觉中的一个重要任务,目标是自动识别图像中的对象类别。通过卷积神经网络(CNN)等深度学习技术,我们可以构建高效的图像分类系统,广泛应用于自动驾驶、医疗影像诊断、监控分析等领域。本文将介绍如何构建一个基于人工智能的图像分类系统,包括环境

水位雨量在线监测系统概述及应用介绍

在当今社会,随着科技的飞速发展,各种智能监测系统已成为保障公共安全、促进资源管理和环境保护的重要工具。其中,水位雨量在线监测系统作为自然灾害预警、水资源管理及水利工程运行的关键技术,其重要性不言而喻。 一、水位雨量在线监测系统的基本原理 水位雨量在线监测系统主要由数据采集单元、数据传输网络、数据处理中心及用户终端四大部分构成,形成了一个完整的闭环系统。 数据采集单元:这是系统的“眼睛”,

hdu1043(八数码问题,广搜 + hash(实现状态压缩) )

利用康拓展开将一个排列映射成一个自然数,然后就变成了普通的广搜题。 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<queue>#include<map>#include<stdio.h>#include<stdlib.h>#include<ctype.h>#inclu

hdu1496(用hash思想统计数目)

作为一个刚学hash的孩子,感觉这道题目很不错,灵活的运用的数组的下标。 解题步骤:如果用常规方法解,那么时间复杂度为O(n^4),肯定会超时,然后参考了网上的解题方法,将等式分成两个部分,a*x1^2+b*x2^2和c*x3^2+d*x4^2, 各自作为数组的下标,如果两部分相加为0,则满足等式; 代码如下: #include<iostream>#include<algorithm

嵌入式QT开发:构建高效智能的嵌入式系统

摘要: 本文深入探讨了嵌入式 QT 相关的各个方面。从 QT 框架的基础架构和核心概念出发,详细阐述了其在嵌入式环境中的优势与特点。文中分析了嵌入式 QT 的开发环境搭建过程,包括交叉编译工具链的配置等关键步骤。进一步探讨了嵌入式 QT 的界面设计与开发,涵盖了从基本控件的使用到复杂界面布局的构建。同时也深入研究了信号与槽机制在嵌入式系统中的应用,以及嵌入式 QT 与硬件设备的交互,包括输入输出设

JAVA智听未来一站式有声阅读平台听书系统小程序源码

智听未来,一站式有声阅读平台听书系统 🌟&nbsp;开篇:遇见未来,从“智听”开始 在这个快节奏的时代,你是否渴望在忙碌的间隙,找到一片属于自己的宁静角落?是否梦想着能随时随地,沉浸在知识的海洋,或是故事的奇幻世界里?今天,就让我带你一起探索“智听未来”——这一站式有声阅读平台听书系统,它正悄悄改变着我们的阅读方式,让未来触手可及! 📚&nbsp;第一站:海量资源,应有尽有 走进“智听

【C++】_list常用方法解析及模拟实现

相信自己的力量,只要对自己始终保持信心,尽自己最大努力去完成任何事,就算事情最终结果是失败了,努力了也不留遗憾。💓💓💓 目录   ✨说在前面 🍋知识点一:什么是list? •🌰1.list的定义 •🌰2.list的基本特性 •🌰3.常用接口介绍 🍋知识点二:list常用接口 •🌰1.默认成员函数 🔥构造函数(⭐) 🔥析构函数 •🌰2.list对象

【Prometheus】PromQL向量匹配实现不同标签的向量数据进行运算

✨✨ 欢迎大家来到景天科技苑✨✨ 🎈🎈 养成好习惯,先赞后看哦~🎈🎈 🏆 作者简介:景天科技苑 🏆《头衔》:大厂架构师,华为云开发者社区专家博主,阿里云开发者社区专家博主,CSDN全栈领域优质创作者,掘金优秀博主,51CTO博客专家等。 🏆《博客》:Python全栈,前后端开发,小程序开发,人工智能,js逆向,App逆向,网络系统安全,数据分析,Django,fastapi

让树莓派智能语音助手实现定时提醒功能

最初的时候是想直接在rasa 的chatbot上实现,因为rasa本身是带有remindschedule模块的。不过经过一番折腾后,忽然发现,chatbot上实现的定时,语音助手不一定会有响应。因为,我目前语音助手的代码设置了长时间无应答会结束对话,这样一来,chatbot定时提醒的触发就不会被语音助手获悉。那怎么让语音助手也具有定时提醒功能呢? 我最后选择的方法是用threading.Time