#include #include using namespace std; int main() { int n, ah, am, as, bh, bm, bs; int result_s, result_m, result_h; while(cin >> n) { while(n --) { c... ...
分类:
其他好文 时间:
2019-07-31 12:57:27
阅读次数:
66
Linux 系统运行级别(SysVinit 系统)
分类:
系统相关 时间:
2019-07-31 10:49:22
阅读次数:
169
Before we proceed to Prototype Design Pattern, We need to review on Clone() method in Java. The Object cloning is a way to create exact copy of an obj ...
分类:
其他好文 时间:
2019-07-29 14:37:22
阅读次数:
98
获取系统时间用到data命令 date 发送邮件用的是mail命令,这个需要安装,yum -y intall mail 然后就是用定时任务 crontab 定时发邮件起到定时巡检系统的作用 crontab -e 编辑定时任务 minute:代表一小时内的第几分,范围 0-59。hour:代表一天中的 ...
分类:
系统相关 时间:
2019-07-28 17:33:19
阅读次数:
261
主格代词:I, he, she, it, you, we, they 1. I am a teacher;2. He is a teacher.3. You are teacher; 宾格代词:me, him, her, it, you, us, them 1. He likes me. [有单三] ...
分类:
其他好文 时间:
2019-07-28 14:02:48
阅读次数:
124
Be动词的形式:现在:be, is, am, are, 过去:was, were, 现在分词:being, 过去分词:been; 1. The man is back.2. They are back.3. He was back.4. They were back.5. They have bee ...
分类:
其他好文 时间:
2019-07-28 13:34:10
阅读次数:
78
Tired of doing the same job? Get your hands on 500-301 exam It is the nature of the human being that he/she will get tired of doing the same task over ...
分类:
其他好文 时间:
2019-07-24 16:35:01
阅读次数:
111
WOW,好长时间没有更新博客了,最近加班,加到屎...果然年轻就要996...哈哈 最近,TA们又有了个新的点子,也不对,可能只是在某处看到的点子,不过..who care!,反正最后我来搬砖,除了CRUD之外好像没啥新颖的地方, 不过有个地方我还是学习了下,参考了一位博主写的: 其中,在githu ...
分类:
其他好文 时间:
2019-07-23 19:01:22
阅读次数:
155
Jupyter notebook, 前身是 IPython notebook, 它是一个非常灵活的工具,有助于帮助你构建很多可读的分析,你可以在里面同时保留代码,图片,评论,公式和绘制的图像。 Jupyter具有非常强的可扩展性,支持很多编程语言,并且易于部署到你的个人电脑和几乎所有的服务器上 -- ...
分类:
其他好文 时间:
2019-07-23 14:52:31
阅读次数:
105
Ø 前言 C# Asynchronous Programming(异步编程)有几种实现方式,其中 Asynchronous Method(异步方法)就是其中的一种。异步方法是 C#5.0 才有的新特性,主要采用 async、await 关键字声明为异步方法,完成对方法的异步调用。C#5.0 对应的 ... ...