代码搜索:预置数
找到约 10,000 项符合「预置数」的源代码
代码结果 10,000
www.eeworm.com/read/449088/7518783
plg 生成随机数.plg
Build Log
--------------------Configuration: 生成随机数 - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\天上人间\LO
www.eeworm.com/read/449088/7518787
dsp 生成随机数.dsp
# Microsoft Developer Studio Project File - Name="生成随机数" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Con
www.eeworm.com/read/449088/7518804
obj 生成随机数.obj
www.eeworm.com/read/449088/7518810
pdb 生成随机数.pdb
www.eeworm.com/read/449088/7518811
ilk 生成随机数.ilk
www.eeworm.com/read/449088/7518813
pch 生成随机数.pch
www.eeworm.com/read/449088/7518815
exe 生成随机数.exe
www.eeworm.com/read/449088/7518827
cpp 生成随机数.cpp
#include
#include
using namespace std;
void rnds(double p[],int n)
{ //生成n个[0 1]间的均匀随机数。
int i,m;
unsigned long randSeed;
randSeed=time(0);//取系统时间为当前种子
double x0=r
www.eeworm.com/read/449088/7518829
ncb 生成随机数.ncb
www.eeworm.com/read/438626/7729107
cpp 水仙花数.cpp
#include
bool f(int x)
{
int a=x/100;//a表示百位上的数;
int b=x%100;
int c=b%100;//c表示个位上的数;
b/=10;//b表示十位上的数;
return a*a*a+b*b*b+c*c*c==x ? true : false;
}
void main()
{
int c=