代码搜索:integer
找到约 10,000 项符合「integer」的源代码
代码结果 10,000
www.eeworm.com/read/145672/12707756
txt input.txt
program test;
integer i;
var j;
real k;
if i>j
j=i
end;
`
www.eeworm.com/read/332488/12753225
txt input.txt
program test;
integer i;
var j;
real k;
if i>j
j=i
end;
`
www.eeworm.com/read/145103/12753933
txt input.txt
program test;
integer i;
var j;
real k;
if i>j
j=i
end;
`
www.eeworm.com/read/332108/12778274
f inverse.f
SUBROUTINE DGEMM ( TRANSA, TRANSB, M, N, K, ALPHA, A, LDA, B, LDB,
$ BETA, C, LDC )
* .. Scalar Arguments ..
CHARACTER*1 TRANSA, TRANSB
INTEGER
www.eeworm.com/read/144458/12788617
txt input.txt
program test;
integer i;
var j;
real k;
if i>j
j=i
end;
`
www.eeworm.com/read/330425/12892164
txt ov511.txt
-------------------------------------------------------------------------------
Readme for Linux device driver for the OmniVision OV511 USB to camera bridge IC
----------------------------------------
www.eeworm.com/read/142578/12936480
lu
REM 用LU分解法求解线性方程组的解
REM A(,)实型二组数组,输入、输出参数,在LUDCMP中,输入时按列存放实方阵A。输出时,对角线以下部分存放单位下
REM 三解矩阵L,对角组及其以上部分存放上三角矩阵U,在LUBSKSB中,将LUDCMP中输出结果A作为输入
REM N 整型变量,输入参数,方程系数矩阵A的阶数
REM IN ...
www.eeworm.com/read/242928/12973247
def airq2.def
/*QUAKED info_player_start (1 0 0) (-16 -16 -24) (16 16 32)
{
model(":vehicles/planes/attack/a10/tris.md2");
}
SINGLE-PLAYER START:
This point-entity specifies locations where single-players
www.eeworm.com/read/140912/13052739
bas 逐步回归m2.bas
Attribute VB_Name = "modMethod"
'逐步回归
Option Explicit
'xy(1 To n, 1 To m+1):观测数据,已知,n是观测次数,m是自变量个数
'F1:指定的F临界值,用于引入,已知
'F2:指定的F临界值,用于剔出,已知
' 要求F1>=F2。如果F1=F2=0,则引入除线性相关外的全部变量
'F:F检验值,计算结果
'
www.eeworm.com/read/140907/13053178
bas 描述统计m2.bas
Attribute VB_Name = "modMethod"
'描述统计的计算方法
Option Explicit
'数组排序的希尔方法
'按升序
'Y():被排序的数组
Public Sub Sort_Shell(Y() As Double)
Dim Temp As Double, Gap As Integer
Dim I As Integer, K As In