项目简介
项目首页
这是一个初中生的项目
看到项目名称,你一定知道这是个什么东西了。没错,这个东西是用来测试Excel软件(不只Microsoft Excel)的性能的。
它是通过随机生成n*m大小的随机数,写入到.csv里面,再测试打开速度。
当然,这个小工具仅给君博一乐,实验结果我自己都保证不了准确
程序截图
这个是程序源代码
Github开源地址
[code]#include #include #include #include #include using namespace std;FILE *fp;int randint_range(int n, int m){ // 产生n~m间的随机数(包括m和n) long double base = ((long double)rand()) / RAND_MAX; long double res = n + (base * (long double)(m - n + 1))+((char)rand()); return res;} // 来自:https://www.cnblogs.com/xiaotan-js/p/16687603.htmlint main(){ cout |