代码搜索:integer

找到约 10,000 项符合「integer」的源代码

代码结果 10,000
www.eeworm.com/read/378073/9252447

bas mt.bas

Attribute VB_Name = "mt" Option Explicit Public SequNum As Integer '记录发送submit后未应答的Submitresp的数量,不大于30 Public Function SendSubmit(sck As Winsock, MySubMt As SubMit) As Long '发送
www.eeworm.com/read/378073/9252449

bas mo.bas

Attribute VB_Name = "MO" Option Explicit Dim RS As New ADODB.Recordset Public Function DeliverMX(sck As Winsock) As Integer '分析SMG发送的短信MO Dim i As Integer Dim J As Integer Dim tmp As String
www.eeworm.com/read/181449/9254913

pas buffer.pas

unit Buffer; interface uses SPPO10, SMGP13, cmpp20, SGIP12, Windows, Classes, SysUtils; type TMtBuffer = packed record Mt: TSPPO_MT; //消息中心到网关的下行数据包 preprced: byte; //是否已预处理
www.eeworm.com/read/181449/9254974

pas global.pas

unit Global; interface uses Buffer; type //网关连接配置 TGATECONFIG = packed record RemoteIp: string; //网关IP RemotePort: integer; //省网关端口 ClientID: string; //登录账号 ClientS
www.eeworm.com/read/377968/9255259

java math.java

import java.io.*; public class math{ public static void main(String args[]){ int m=0; char op=' '; int x=Integer.parseInt(args[0]); int y=Integer.parseInt(args[1]); try{ System.out.println("请输
www.eeworm.com/read/181437/9255292

frm mp3play.frm

VERSION 5.00 Begin VB.Form Form11 AutoRedraw = -1 'True BorderStyle = 0 'None Caption = "Form11" ClientHeight = 5145 ClientLeft = 0 Clien
www.eeworm.com/read/181437/9255293

frm musiclist.frm

VERSION 5.00 Object = "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0"; "COMDLG32.OCX" Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX" Begin VB.Form Form16 BorderStyle
www.eeworm.com/read/377955/9255458

bas commdlgs.bas

Attribute VB_Name = "CommDlgs" '此模块是通用标准对话框. '包含多种对话框.比如打开文件\保存文件\打开目录\打开打印机\字体\颜色等 '每个函数为一个类型对话框 '// '// Common Dialogs Module '// '// Description: '// Provides wrapper functions into t
www.eeworm.com/read/181408/9255940

txt input.txt

program fibonacci; var m:integer; function fib (n:integer) :integer; begin if n=0 then fib:=0 else if n=1 then fib:=1 else fib:= fib(n-1) +fib(n-2)
www.eeworm.com/read/377944/9256661

txt connecting database using javaserverpages (转载).txt

作者:阿土伯 email: lu1206@yeah.net 日期:2001-1-5 11:04:15 I have given you the source code, how to connect with database from jsp. this is easy and simple.cut and paste the below code and modify according