代码搜索:integer

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

代码结果 10,000
www.eeworm.com/read/381957/9061113

java configer.java

package ant; import java.awt.Frame; import java.awt.*; import java.awt.event.*; /** * Title: ant * Description: * Copyright: Copyright (c) 2003 * Company: agents.yeah.net * @auth
www.eeworm.com/read/282782/9061135

pas sconnect.pas

{*******************************************************} { } { Borland Delphi Visual Component Library } { Streamed Conn
www.eeworm.com/read/282777/9062217

pas unitpltortf.pas

{ Support: xcwen@sina.com } // xcwen 2005-7~~~2005-8 delphi7 // 2005-12 unit UnitPLToRtf; interface uses Windows, Messages, SysUtils, Classes, Contr
www.eeworm.com/read/184975/9062413

frm lx1.frm

VERSION 5.00 Begin VB.Form Form1 BackColor = &H00AAD59B& BorderStyle = 0 'None Caption = "Form1" ClientHeight = 1770 ClientLeft = 870 Cli
www.eeworm.com/read/184975/9062428

bas module1.bas

Attribute VB_Name = "Module1" '初始化全局变量 Public ce As Integer '控制英汉次序的变量(1 英汉 0 反) Public n As Integer ' 控制播放次数的变量(1-12) Public ctime As Integer '控制汉语停留时间的变量(3-15秒) Public etime As Integer '控制英语停
www.eeworm.com/read/184964/9062997

m setubound.m

%Copyright 2002 The Mobile and Portable Radio Research Group % %This code is part of the GUI %This code is envoked when the pusle durartion is not set ot an integer value %The code issues a dialo
www.eeworm.com/read/381906/9064916

frm frmbrowser.frm

VERSION 5.00 Object = "{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}#1.1#0"; "SHDOCVW.DLL" Object = "{6B7E6392-850A-101B-AFC0-4210102A8DA7}#1.3#0"; "COMCTL32.OCX" Object = "{0D452EE1-E08F-101A-852E-02608C
www.eeworm.com/read/381906/9065454

frm form1.frm

VERSION 5.00 Begin VB.Form Form1 BorderStyle = 1 'Fixed Single Caption = "超级连接的制作" ClientHeight = 2655 ClientLeft = 45 ClientTop = 330 Cl
www.eeworm.com/read/381906/9065757

bas tranblt.bas

Attribute VB_Name = "mTransparentBlt" Option Explicit #If Win32 Then Declare Function BitBlt Lib "gdi32" (ByVal hDestDC As Long, _ ByVal x As Long, ByVal y As Long, ByVal nWidth As L
www.eeworm.com/read/184917/9065866

txt 高精度乘法和阶乘.txt

高精度乘法和阶乘 一、高精度乘法基本思想和加法一样。其基本流程如下: ①读入被乘数s1,乘数s2 ②把s1、s2分成4位一段,转成数值存在数组a,b中;记下a,b的长度k1,k2; ③i赋为b中的最低位; ④从b中取出第i位与a相乘,累加到另一数组c中;(注意:累加时错开的位数应是多少位 ?) ⑤i:=i-1;检测i值:小于k2则转⑥,否则转④ ⑥ ...