09 2019 档案

摘要:解法一: #include<stdio.h>int main(){ int a,b,c,d,e,f; scanf("%d:%d:%d",&a,&b,&c); scanf("%d:%d:%d",&d,&e,&f); if(a>d) { if(b>e) { if(c>=f) printf("%02d:% 阅读全文
posted @ 2019-09-30 00:20 John-C 阅读(161) 评论(0) 推荐(0)
摘要:#include<stdio.h>#include<stdlib.h>#include<string.h>int main(){ int a[55]; int i; int w; int j; int len; int max; char str[110]; while(gets(str)) { m 阅读全文
posted @ 2019-09-28 14:16 John-C 阅读(214) 评论(0) 推荐(0)