# include "stdio.h"# include "stdlib.h"# include <time.h>int main(int argc,char*argv[]) { int i; char c,gu; srand((unsigned)time(NULL)); c=6; gu=rand( ...
分类:
其他好文 时间:
2019-03-25 01:04:07
阅读次数:
135
# include "stdio.h"# include "stdlib.h"# include <time.h>int main(int argc,char*argv[]) { int i; char c,gu; srand((unsigned)time(NULL)); c=6; gu=rand( ...
分类:
其他好文 时间:
2019-03-24 23:16:20
阅读次数:
177
#include <stdio.h>#include <stdlib.h>#include "time.h"int main(){ int i; char c,gu; srand((unsigned)time(NULL)); c=6; gu=rand()%6+1; for(i=1;i<=100;i+ ...
分类:
其他好文 时间:
2019-03-24 21:35:24
阅读次数:
100
# include "stdio.h"# include "stdlib.h"# include <time.h>int main(int argc,char*argv[]) { int i; char c,gu; srand((unsigned)time(NULL)); c=6; gu=rand( ...
分类:
其他好文 时间:
2019-03-24 09:57:38
阅读次数:
134
// 心理魔术.cpp : Defines the entry point for the application.// #include "time.h"#include"stdlib.h"#include"stdio.h" int main(){ int i; char c,gu; srand( ...
分类:
其他好文 时间:
2019-03-23 15:55:01
阅读次数:
134
先上代码,再按代码讲解 #include<stdio.h>#include<string.h>#include<stdlib.h>#include<time.h>#include<algorithm>using namespace std;struct shudui{ int w,e; bool o ...
分类:
其他好文 时间:
2019-03-23 00:43:58
阅读次数:
106
Redis 基本操作 参考: "An introduction to Redis data types and abstractions" 中文翻译: "看云" Redis命令查询: "Command Reference Redis" Strings Lists other llen key lis ...
分类:
其他好文 时间:
2019-03-19 01:17:30
阅读次数:
208
题目描述 http://uoj.ac/problem/207 题解 因为这道题有删边和加边的操作,所以我们不能再链上操作,只能在点上操作。 考虑一些正确性玄学的算法。 我们给每一次链加随机一个权值,这样对于每次询问就查一下这条边分成的两块中的权值异或和是否等于当前所有链的权值异或和即可。 代码 ...
分类:
其他好文 时间:
2019-02-23 10:41:20
阅读次数:
166
在许多情况下,需要生成随机数。关于随机数生成器,有两个相关的函数。一个是 rand() ,该函数只返回一个伪随机数。生成随机数之前必须先调用 srand() 函数。 下面是一个关于生成随机数的简单实例。实例中使用了 time() 函数来获取系统时间的秒数作为种子,通过调用 rand() 函数来生成1 ...
分类:
编程语言 时间:
2019-02-16 20:50:08
阅读次数:
175