代码搜索:预置数

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

代码结果 10,000
www.eeworm.com/read/423424/10560387

txt saolei.txt

import java.awt.*; import java.awt.event.*; import javax.swing.*; /*按扭类*/ class Bomb extends JButton { public int num_x,num_y; //第几号方块 public int BombRoundCount; //周围雷数 public
www.eeworm.com/read/352242/10571231

cpp 1.cpp

#include #include #include #include using namespace std; int M(double k) //此函数用于对double数求%2 { for(;k>=2;k-=2) //k〉=2时,k=k-2 ; return (int)k;
www.eeworm.com/read/351694/10619601

h debug.h

// $Id: Debug.h,v 1.4 2001/12/19 04:19:19 genta Exp $ /*! @file @brief デバッグ用関数 @author Norio Nakatani $Revision: 1.4 $ */ /* Copyright (C) 1998-2001, Norio Nakatani This source code i
www.eeworm.com/read/276983/10690179

cpp p3-148.cpp

#include #include #include //main()函数的定义 void main( void ) { double y; int N; //输入一个大于等于0的数 do { coutN;
www.eeworm.com/read/421716/10707739

m s3.m

%============================================s3.m============================================= %Step3:对二值图像进行霍夫变换 %Mmax和Nmax分别为离散化的分割数,这里设置为1000 Mmax = 1000; Nmax = 1000; H = zeros(Mmax,Nmax);
www.eeworm.com/read/421634/10723197

cpp l7_1.cpp

//建立无向图的邻接矩阵并输出 #include const int n=4; // 图中顶点数 const int e=5; typedef int elemtype; // 图中边数 struct graph { elemtype v[n+1];
www.eeworm.com/read/421634/10723215

cpp l7_5.cpp

//用邻接矩阵实现无向图的广度优先搜索遍历 #include const int n=8; // 图中顶点数 const int e=10; typedef int elemtype; // 图中边数 struct graph { elemtype v
www.eeworm.com/read/421634/10723223

cpp l7_3.cpp

//用邻接矩阵实现无向图的深度优先搜索遍历 #include const int n=8; // 图中顶点数 const int e=10; typedef int elemtype; // 图中边数 struct graph { elemtype v
www.eeworm.com/read/276181/10758414

c 平方根.c

#define Epsilon 1.0E-6 /*控制解的精度*/ #include #include main() { float num,pre,this; do { scanf("%f",&num);/*输入要求平方根的数*/ }while(num
www.eeworm.com/read/349978/10779372

m groupavret.m

function averageret=groupavret(datafile,retfile) % retfile基金的属性文件(xls),datafile基金的分组文件(txt),行为组数,列为分为改组的基金编号,多余为0 % 返回每组平均属性值 b=load(datafile);