代码搜索:预置数

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

代码结果 10,000
www.eeworm.com/read/392087/8363175

txt lesson_information.txt

11111 高数 60 60 江世景 5 1 22222 大英 55 55 李向民 5 1 33333 C++ 50 40 罗菁 9 2
www.eeworm.com/read/378183/9244828

dat vb_code53.dat

Randomize语句 初始化随机数生成器。
www.eeworm.com/read/378183/9246120

dat funtc262.dat

函数名称: random 函数原型: int random(int num) 函数功能: 得到一个在0和参数num之间的随机数 函数返回: 一个在0和参数num之间的随机数 函数说明: num 最大的随机数取值 所属文件:
www.eeworm.com/read/279909/10378173

txt 例10.29.txt

例10.29是一个指针数组的元素指向整型数据的简单例子。目的是为了说明它的用法。   例10.29 main()    {static int a[5]={1,3,5,7,9};      int *num[5]={&a[0],&a[1],&a[2],&a[3],&a[4]};    int
www.eeworm.com/read/446732/7569648

txt 例10.29.txt

例10.29是一个指针数组的元素指向整型数据的简单例子。目的是为了说明它的用法。   例10.29 main()    {static int a[5]={1,3,5,7,9};      int *num[5]={&a[0],&a[1],&a[2],&a[3],&a[4]};    int
www.eeworm.com/read/442348/7654608

h convter.h

//把五字节的十六进制,转换为13位十进制数,并存在数组的有关位置
www.eeworm.com/read/399843/7831377

txt 例10.29.txt

例10.29是一个指针数组的元素指向整型数据的简单例子。目的是为了说明它的用法。   例10.29 main()    {static int a[5]={1,3,5,7,9};      int *num[5]={&a[0],&a[1],&a[2],&a[3],&a[4]};    int
www.eeworm.com/read/199405/7861205

m rfile.m

% 读入数据子程序。做的相当好 function varargout=RFile(fid,m,n) % m为输入变量{}的个数 ; n是每个输入变量所要求读进的数据个数 for i=1:m varargout{i}=fscanf(fid,'%f',n(i)); end
www.eeworm.com/read/312610/13607891

txt 例10.29.txt

例10.29是一个指针数组的元素指向整型数据的简单例子。目的是为了说明它的用法。   例10.29 main()    {static int a[5]={1,3,5,7,9};      int *num[5]={&a[0],&a[1],&a[2],&a[3],&a[4]};    int
www.eeworm.com/read/480611/6666944

cpp 3.3.cpp

/*整型数据的溢出*/ #include int main() { int a,b; a=32767; b=a+1; printf("%d,%d",a,b); getchar(); }