码迷,mamicode.com
首页 >  
搜索关键字:srand    ( 611个结果
Redis学习记录——(2)Redis数据类型
Redis数据类型:string 存储的数据:单个数据,最简单的数据存储类型,也是最常用的存储类型 存储数据格式:一个存储空间保存一个数据 存储内容:通常使用字符串,如果字符串以整数形式展示,可以作为数字操作使用 string类型数据基本操作: 添加/修改:set key value 获取数据: g ...
分类:其他好文   时间:2021-07-02 15:23:26    阅读次数:0
【luogu P3369】普通平衡树(fhq Treap 做法)
平衡树模板题,要求维护一些操作。 插入一个数,删除一个数,查询一个数的排名,查询排名一直的数,找前驱后继。 ...
分类:其他好文   时间:2021-05-25 17:46:12    阅读次数:0
tcp raw socket
client #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <string.h> #include <time.h> #include <arpa/inet.h> #include <sys/socket.h> ...
分类:其他好文   时间:2021-05-24 12:27:36    阅读次数:0
c++简单随机数
#include<iostream> #include<ctime> #include<cstdlib> using namespace std; int random(int n) { return (long long)rand()*rand%n; } int main() { srand(un ...
分类:编程语言   时间:2021-05-04 16:26:28    阅读次数:0
10以内的数字的四则运算
#include <iostream>#include <cstdlib>#include <ctime>using namespace std;int main(){ int num1,num2,op,result1,result2; //num1,num2:操作数;op:运算符;result1, ...
分类:其他好文   时间:2021-04-28 12:11:52    阅读次数:0
ex3
task1 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main(){ int x, n; srand(time(0)); for(n=1 ; n<=N; n++){ x = rand() % 10 ...
分类:其他好文   时间:2021-04-16 12:04:07    阅读次数:0
实验三
恢复内容开始 实验任务1 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int x, n; srand(time(0)); for(n=1; n<=N; n++) { x = ran ...
分类:其他好文   时间:2021-04-16 12:00:33    阅读次数:0
实验3 C语言分支语句、循环语句、函数综合应用编程-1
实验1 //生成N个0~99之间的随机整数,并打印输出 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int x,n; srand(time(0)); for(n=1;n<=N;n+ ...
分类:编程语言   时间:2021-04-15 12:26:09    阅读次数:0
实验三——张翼飞
实验任务一: // 生成N个0~99之间的随机整数,并打印输出 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int x, n; srand(time(0)); // 以当前系统时间 ...
分类:其他好文   时间:2021-04-14 12:11:43    阅读次数:0
实验三
// 生成N个0~99之间的随机整数,并打印输出 #include <stdio.h> #include <stdlib.h> #include <time.h> #define N 5 int main() { int x, n; srand(time(0)); // 以当前系统时间作为随机种子 ...
分类:其他好文   时间:2021-04-13 12:30:05    阅读次数:0
611条   1 2 3 4 ... 62 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!