博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
游船出租
阅读量:6838 次
发布时间:2019-06-26

本文共 1873 字,大约阅读时间需要 6 分钟。

题目描述:
    现有公园游船租赁处请你编写一个租船管理系统。当游客租船时,管理员输入船号并按下S键,系统开始计时;当游客还船时,管理员输入船号并按下E键,系统结 束计时。船号为不超过100的正整数。当管理员将0作为船号输入时,表示一天租船工作结束,系统应输出当天的游客租船次数和平均租船时间。
    注意:由于线路偶尔会有故障,可能出现不完整的纪录,即只有租船没有还船,或者只有还船没有租船的纪录,系统应能自动忽略这种无效纪录。
输入:

    测试输入包含若干测试用例,每个测试用例为一整天的租船纪录,格式为:

    船号(1~100) 键值(S或E) 发生时间(小时:分钟)
    每一天的纪录保证按时间递增的顺序给出。当读到船号为-1时,全部输入结束,相应的结果不要输出。

输出:
    对每个测试用例输出1行,即当天的游客租船次数和平均租船时间(以分钟为单位的精确到个位的整数时间)。
样例输入:
1 S 08:102 S 08:351 E 10:002 E 13:160 S 17:000 S 17:003 E 08:101 S 08:202 S 09:001 E 09:200 E 17:00-1
样例输出:
2 1960 01 60
1 #include 
2 #include
3 #include
4 #include
5 #include
6 #include
7 8 #include
9 #include
10 #include
11 #include
12 #include
13 #include
14 #include
15 #include
16 #include
17 18 19 20 using namespace std; 21 22 23 int vis[101]; 24 25 26 struct Re{ 27 int id; 28 29 char s[100]; 30 char e[100]; 31 }re[101]; 32 33 34 35 36 int main() 37 { 38 39 40 int i,j,k; 41 42 int id; 43 44 45 char s[100],e[100]; 46 47 48 49 char tag; 50 51 52 while(scanf("%d",&id)!=EOF) 53 { 54 if(id==-1) 55 break; 56 57 getchar(); 58 59 60 for(i=1;i<=100;i++) 61 vis[i]=0; 62 63 int num=0; 64 65 double st=0; 66 67 68 69 70 71 72 scanf("%c %s",&tag,s); 73 getchar(); 74 75 if(tag=='S') 76 {vis[id]=1;strcpy(re[id].s,s);} 77 else 78 { 79 if(vis[id]==1) 80 {vis[id]=2;strcpy(re[id].e,s); 81 82 83 num++; 84 char temps[100]; 85 86 int tt=0; 87 88 int hh,mm; 89 90 91 92 strcpy(temps,re[id].s); 93 94 sscanf(temps,"%d:%d",&hh,&mm); 95 96 tt=hh*60+mm; 97 98 strcpy(temps,re[id].e); 99 100 sscanf(temps,"%d:%d",&hh,&mm);101 102 103 tt=hh*60+mm-tt;104 105 106 107 108 st+=tt;109 110 111 112 113 114 115 116 117 }118 }119 120 121 122 if(id==0)123 {cout<<0<<' '<<0<

 

转载于:https://www.cnblogs.com/zjushuiping/archive/2012/05/30/2526817.html

你可能感兴趣的文章
单向链表的有关操作(链式存储结构)
查看>>
Spring @PostConstruct and @PreDestroy example
查看>>
软件架构师2
查看>>
单链表的操作
查看>>
没事抽空学——常用界面组件属性
查看>>
《程序员代码面试指南》第二章 链表问题 构造链表和节点的实体
查看>>
【LeanEAP.NET】精益企业应用平台---源码&Demo下载
查看>>
Django restfulframework 开发相关知识 整理
查看>>
去掉数组中重复的数字。
查看>>
Poj 2887-Big String Splay
查看>>
docker笔记-docker-container
查看>>
SuperSocket 服务管理器 (ServerManager)
查看>>
Eclipse launch failed.Binary not found解决方案
查看>>
NSGA-II入门C1
查看>>
结对第2次作业——WordCount进阶需求
查看>>
两个经典递归问题:菲波那契数列 + 汉诺塔
查看>>
php中处理xml文件的类 simpleXML
查看>>
结构体内字节手动对齐(#pragam pack)
查看>>
TagCloudView云标签的灵活运用
查看>>
Wikioi 1020 孪生蜘蛛 Label:Floyd最短路
查看>>