代码搜索:integer
找到约 10,000 项符合「integer」的源代码
代码结果 10,000
www.eeworm.com/read/389393/8524699
txt true.txt
program test;
integer i=1;
var j=2;
real k;
if i>j
j=i
end;
www.eeworm.com/read/289515/8546810
txt input.txt
program test;
integer i;
var j;
real k;
if i>j
j=i
end;
`
www.eeworm.com/read/288576/8620834
bas 模糊聚类m4.bas
Attribute VB_Name = "modFCheck"
'模糊聚类分析
'F检验方法模块
Option Explicit
'求F检验值
'X:试验数据
'IJ:分类结果
'F:F检验值
Public Sub F_Check(X() As Double, IJ() As Integer, F As Double)
Dim R As Integer, Nj As In
www.eeworm.com/read/431660/8663388
txt 新建文本文档.txt
Exponentiation
Time Limit: 500MS Memory Limit: 10000K
Total Submissions: 43441 Accepted: 9954
Description
Problems involving the computation of exact values of very large magnitude and pre
www.eeworm.com/read/387489/8673027
txt elmhes.txt
Procedure ELMHES(var A:matrx2; N:integer);
var
M,J,I:integer; X,Y:real;
begin
If N > 2 Then
begin
For M:=2 To N - 1 do
begin
X:=0 ;
I:=M;
www.eeworm.com/read/387489/8674163
pas unit2.pas
unit Unit2;
interface
uses
unit1;
Procedure BALANC(var A:matrx2; N:integer);
Procedure ELMHES(var A:matrx2; N:integer);
implementation
Procedure BALANC(var A:matrx2; N:integer);
Label 1,
www.eeworm.com/read/287401/8687633
cpp lmdif.cpp
/* lmdif.f -- translated by f2c (version of 17 January 1992 0:17:58).
You must link the resulting object file with the libraries:
-lf77 -li77 -lm -lc (in that order)
*/
#include
#inc
www.eeworm.com/read/384729/8847756
console-mki
========================================================================
Firestorm Analyst Console MkI Thu Dec 26 2002
Copyright (c) 2002 Gianni Tedesco. Verbatim copying of
www.eeworm.com/read/427909/8913684
m div.m
function d = div(a,b)
% DIV Integer division
% d = div(a,b)
d = floor(a / b);
www.eeworm.com/read/427674/8926182
f90 errors.f90
subroutine dpoly_val ( n, p, x, pval )
!*****************************************************************************80
!
!! DPOLY_VAL evaluates a double precision polynomial.
!
! Modified:
!