安装时可选择的版本列表 安装完之后的版本: 3. 时间线更新 ...
记 2018/4/29 qbxt 测试(提高基础班) 简单的 NOIP 模拟赛 竞赛时间: 2018 年 4 月 29 日 13:30-17:00 T1 期望得分:100;实际得分:100 乘法 【问题描述】 给定正整数n,m,p,你需要输出 n * m 对 p 取模后的值【输入文件】 输入文件为 ...
分类:
其他好文 时间:
2018-04-29 22:12:43
阅读次数:
168
Design Sprint是目前在湾区比较流行的一种设计方法。它是由Google内部梳理的一套如何带领团队快速做创新设计并验证设计的基本流程。我翻译整理了以下这两个文档《New Form Factors Sprint Playbook》《Product Design Sprint Playbook ...
分类:
其他好文 时间:
2018-04-23 18:38:55
阅读次数:
208
利用之前学过的所有知识.随机生成10个数字(1-1000),一行一个,并存到1.txt中.#include<stdio.h>#include<stdlib.h>#include<time.h>int F_gettimestamp() { time_t l_now; time(&l_now); ret ...
分类:
编程语言 时间:
2018-04-20 23:42:20
阅读次数:
211
一次数据库作业 题目如下: Consider the following SQL table definitions: 1. Define sensible key constraints for these tables in SQL. Note: An olympic event (such a ...
分类:
数据库 时间:
2018-04-16 19:51:16
阅读次数:
204
ZC:sprintf,sprintf_s 1、经测试 sprintf,是会在字符串的最后 加上'\0'的,∴ 不用担心 字符串的结尾的问题 2、 3、 4、 5、 ...
分类:
编程语言 时间:
2018-04-12 18:01:58
阅读次数:
142
LIBVISO2简介 libviso2 (Library for Visual Odometry 2) 是一个快速跨平台C++库用于计算移动单目/双目相机的6DoF运动。 双目版本基于最小化稀疏特征匹配的重投影误差,比较通用(无需运动模型或安装限制,除了输入图像需为校正后(rectified)的并且... ...
分类:
Windows程序 时间:
2018-04-08 20:16:56
阅读次数:
1466
/** * 获取客户端IP地址 * @param integer $type 返回类型 0 返回IP地址 1 返回IPV4地址数字 * @param boolean $adv 是否进行高级模式获取(有可能被伪装) * @return mixed */ function sys_get_client_... ...
分类:
其他好文 时间:
2018-04-06 23:41:31
阅读次数:
215
```go
package main import ( "crypto/md5" "fmt" "io" "os"
) var content = "This is content to check" func main() { checksum := MD5(content) checksum2 :... ...
分类:
其他好文 时间:
2018-03-22 01:46:05
阅读次数:
156
```go package main import ( "encoding/json" "fmt" "time" ) func main() { eur, err := time.LoadLocation("Europe/Vienna") if err != nil { panic(err) } t ...
分类:
其他好文 时间:
2018-03-22 01:40:33
阅读次数:
156