CSP rp++
  • 板块灌水区
  • 楼主yanhao40340
  • 当前回复0
  • 已保存回复0
  • 发布时间2022/9/18 08:27
  • 上次更新2023/10/27 11:02:56
查看原帖
CSP rp++
674721
yanhao40340楼主2022/9/18 08:27
#include <iostream>
#include <cstdlib>
#include <ctime>
#define I using
#define AK namespace
#define CSP std
I AK CSP;
typedef unsigned long long ull;
inline ull rrand(){
	ull x;
	for (int i=1;i<=18;++i) x=(x<<3ull)+(x<<1ull)+rand()%10;
	return x;
}
int main(){
	srand(time(NULL));
	unsigned long long rp2022=rrand();
	printf("%llu\n",rp2022);
	for (;;) ++rp2022;
	return 0;
}
2022/9/18 08:27
加载中...