网吧管理系统设计C语言资料.doc

  1. 1、本文档共24页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
网吧管理系统设计C语言资料

摘 要 随着社会的发展,人们的生活水平逐步得到提高,科学技术的应用也逐步在人们的生活中得到体现。网吧是社会发展的产物之一,它成为了人们业余休闲的又一个场所。网吧管理者要靠人力管理网吧里面众多的电脑信息显然很困难,而且存在很多缺陷。科学技术的不断提高,计算机科学日渐成熟,其强大的功能已为人们深刻认识,它已进入人类社会的各个领域并发挥着越来越重要的作用。 作为计算机应用的一部分,使用计算机对信息进行管理,With the social development and peoples living standards improved, science and technology applications in peoples lives gradually be reflected. Internet cafes are a product of social development and it has been one of place where people spend their leisure time. It is clearly difficult that Internet cafe managers rely on human management to manage a large number of computers, and there are many defects. With the continuous improvement of science and technology, computer science and the maturing of its powerful features for people to have a profound understanding. It has entered the human society in various fields and is playing an increasingly important role. As part of the computer application, the use of the computer on the management of net-bar’s computer information has become an inevitable choice. 1. 课程设计目的: 1.1熟练掌握C语言课程中所学的理论知识; 1.2通过综合C语言的基本知识来解决实际问题; 1.3加强分析和解决问题的能力。 2. 课程设计题目描述和要求: 2.1 题目描述: 2.1.1 题目:网吧电脑管理系统。 2.1.2 描述:在设计该程序时,要将系统的不同功能分成各个模块,每个模块由一个函数定义,整个程序由函数调用来实现。每个模块是一个子函数,由一个主函数调用各个子函数。在定义子函数时,根据其不同的功能来选择不同的语句,需要使用循环是可以用“ do……while ”来实现,需要使用选择时可以用“ switch ”来实现,需要使用条件时可以用“ if ”来实现等。 2.2 要求: 2.2.1 电脑信息要求:电脑编号,,系统以菜单方式工作。 用赋初值的方法把信息送到数组中,然后把它们输出显示。。 任意输入,打印出所有数据。。。。struct computer”结构体类型包括了每台电脑不同类型的数据项(电脑编号,,struct buydate”结构体类型包括了购买时间的月、日、年,再套用到“struct computer”中。 对要调用的函数进行声明 #define N 15 /*定义电脑的台数上限*/ #include stdio.h #include stdlib.h #include string.h #include conio.h struct buydate /*定义结构体*/ { int month; int day; int year; }; struct computer /*定义结构体*/ { int num; struct buydate date; char display[10]; char camera; float fee; char condition; }cmp[N]; /*定义数组*/ int cmp_count=0; /*子函数声明*/ void ma(); void add_cmp_info(); void search_cmp_info(); void output_cmp_info(); void omit_cmp_info(); void motify_cmp_info(); void cost_cmp_in

文档评论(0)

aena45 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档