博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
PAT 1006 部分正确_另一种解法
阅读量:6367 次
发布时间:2019-06-23

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

hot3.png

由于使用了

#include 

提交时选择语言须为C++

#include 
#include 
#include 
#include 
typedef struct{ char id[15]; char in[10]; char out[10];}record;int cmpIn(const void * a, const void * b){ return strcmp((* (record *)a).in,  (* (record *)b).in);}int cmpOut(const void * a,const void * b){ return strcmp( ( * (record *)b).out,(* (record *)a).out  );}int main(){    //freopen("in.txt","r",stdin);    //freopen("out.txt","w",stdout); int n,i; scanf("%d",&n); record rs[200]; for(i=0; i

还是不知道哪里错了,不过下面代码更简便:

#include 
#include 
#include 
int main(){    //freopen("in.txt","r",stdin);    //freopen("out.txt","w",stdout); int n,i; scanf("%d",&n); char id[15],in[10],out[10]; char firstId[15],lastId[15],firstIn[10],lastOut[10]; int flag = 1; for(i=0; i
 0) strcpy(lastOut,out), strcpy(lastId,id); } } printf("%s %s",firstId,lastId); return 0;}

转载于:https://my.oschina.net/kaneiqi/blog/201195

你可能感兴趣的文章
《Java EE 7精粹》—— 第1章 Java EE 1.1 简介
查看>>
《Exchange Server 2013 SP1管理实践》——导读
查看>>
syslog:类Unix系统常用的log服务
查看>>
使用Annotation设计持久层
查看>>
深入实践Spring Boot2.4.1 Neo4j依赖配置
查看>>
Zen Cart 如何添加地址栏上的小图标
查看>>
SecureCrt 连接Redhat linux
查看>>
[NHibernate]持久化类(Persistent Classes)
查看>>
如何在Hive中使用Json格式数据
查看>>
linux如何恢复被删除的热文件
查看>>
Eclipse(MyEclipse) 自动补全
查看>>
Struts2中dispatcher与redirect的区别
查看>>
zabbix agentd configure
查看>>
地图点聚合优化方案
查看>>
Google Chrome 快捷方式
查看>>
备考PMP心得体会
查看>>
vue proxy匹配规则
查看>>
线上应用故障排查之一:高CPU占用
查看>>
Extend Volume 操作 - 每天5分钟玩转 OpenStack(56)
查看>>
IronPython教程
查看>>