代码搜索:预置数

找到约 10,000 项符合「预置数」的源代码

代码结果 10,000
www.eeworm.com/read/457434/7325536

cpp 数中的最大数.cpp

#include #include using namespace std; const int N=1000*1000*10 +1; char buf[N],ans; int main() { int k; while(scanf(" %s%d", buf, &k)!=EOF) { int l
www.eeworm.com/read/455595/7369716

txt 各数位不重复的数.txt

#include #include #include using namespace std; long fac[10]; long howmany[9]; /* 题目:各数位不重复的数 输入: 10000 输出: 26057 */ //思路:通过二分法查找,找到所要的数 void getfac()
www.eeworm.com/read/452415/7441278

txt 3d数独说明.txt

我偶然看到前阵子流行至今的数独,就在想不知道有沒有人有挑战过 3D 数独,所以就也试着先将 3D 数独的模型建起来,不过这个游戏的操作过程可能会有点麻烦,是要让玩家可以走进 3D 的 Cube 中去做设定,还是要让玩家可以将比较靠近里面的整排 Cube 切换到外面来再做设定,这部份的操作方式可能要好好设计一下。此外,建立了 9 x 9 x 9 = 729 个 Cube,对于 PV3D 来说,差不 ...
www.eeworm.com/read/449088/7518786

plg 随机数均匀性检验.plg

Build Log --------------------Configuration: 随机数均匀性检验 - Win32 Debug-------------------- Command Lines Creating temporary file "C:\DOCUME~1\天上人间
www.eeworm.com/read/449088/7518795

cpp 随机数均匀性检验.cpp

#include #include #include using namespace std; void rnds(double p[],int n) { //生成n个[0 1]间的均匀随机数。 int i,m; unsigned long randSeed; randSeed=time(0);//取系统时间为当前种子