代码搜索:integer
找到约 10,000 项符合「integer」的源代码
代码结果 10,000
www.eeworm.com/read/284803/8896078
pas browsedrreg.pas
{$I DFS.INC}
unit BrowseDrReg;
interface
uses
BrowseDr,
{$IFDEF DFS_NO_DSGNINTF}
DesignIntf,
DesignEditors;
{$ELSE}
DsgnIntf;
{$ENDIF}
type
{ A component editor (
www.eeworm.com/read/284803/8896148
pas cbtnform.pas
{$I DFS.INC} { Standard defines for all Delphi Free Stuff components }
{------------------------------------------------------------------------------}
{ A Windows 95 and NT 4 style color selecti
www.eeworm.com/read/284803/8896222
pas systemimagelist.pas
{$I DFS.INC} { Standard defines for all Delphi Free Stuff components }
{------------------------------------------------------------------------------}
{ TdfsSystemImageList v1.16
www.eeworm.com/read/284803/8896363
pas extlistview.pas
{$I DFS.INC} { Standard defines for all Delphi Free Stuff components }
{.$DEFINE DFS_DEBUG}
{.$DEFINE DFS_TRY_BACKGROUND_IMAGE}
{---------------------------------------------------------------
www.eeworm.com/read/384082/8902275
bas apideclarations.bas
Attribute VB_Name = "ApiDeclarations"
'******************************************************************************
'API constants, listed alphabetically
'****************************************
www.eeworm.com/read/284676/8909815
cpp xt3-9-1.cpp
#include
using namespace std;
int main ( )
{int a,b,c;
couta>>b>>c;
if(a
www.eeworm.com/read/427960/8910022
txt double.txt
With version 4.6 it is now possible to use a floating-point "double"
as the underlying type used to store the digits of a multi-precision number.
This is fully supported by the "config" utility.
www.eeworm.com/read/383934/8910449
pas globalvardefs.pas
unit GlobalVarDefs;
interface
uses
SysUtils, Math;
type
//电子表格操作相关参数
TPara = record
SingTral: Boolean; //单轨为1 双轨为0
RunState: Boolean;
www.eeworm.com/read/186780/8910662
pl0 funparaa.pl0
PROGRAM ARRTEST;
VAR
B:ARRAY[1..2] OF INTEGER;
FUNCTION MC(A:ARRAY OF INTEGER):INTEGER;
VAR X,Y:INTEGER;
BEGIN
WRITE(A[1],A[2]);
END;
BEGIN
B[1]:=1;B[2]:=2;
MC(B);
WRITE(B[1],B[2]);
E
www.eeworm.com/read/383930/8910673
txt 计算百分比.txt
private static String getRate(int success,int count){
String rate="0.00%";
if(count!=0){
rate=(double)success/count+"";
if(success/count>=1){