代码搜索:integer
找到约 10,000 项符合「integer」的源代码
代码结果 10,000
www.eeworm.com/read/376037/9335771
f90 ex0831.f90
program ex0831
implicit none
integer :: n
write(*,*) 'N='
read(*,*) n
write(*, "(I2,'! = ',I8)" ) n, fact(n)
stop
contains
recursive integer function fact(n) result(ans)
www.eeworm.com/read/376037/9335812
f90 ex0828.f90
program ex0828
implicit none
integer :: n
integer, external :: fact
write(*,*) 'N='
read(*,*) n
write(*, "(I2,'! = ',I8)" ) n, fact(n)
stop
end
recursive integer function fac
www.eeworm.com/read/376037/9335860
f90 textgraphlib.f90
module TextGraphLib
implicit none
integer, save :: ScreenWidth ! 定义可以画图的画面宽度
integer, save :: ScreenHeight ! 定义可以画图的画面高度
character, save :: background = ' ' ! 定义预设用来清除画面
www.eeworm.com/read/179788/9337003
~pas main.~pas
unit Main;
interface
uses
SysUtils, Types, Classes, Variants, QGraphics, QControls, QForms, QDialogs,
QStdCtrls, QExtCtrls;
type
TFrmMain = class(TForm)
BtnTA: TButton;
BtnTB: TButton
www.eeworm.com/read/179788/9337018
pas main.pas
unit Main;
interface
uses
SysUtils, Types, Classes, Variants, QGraphics, QControls, QForms, QDialogs,
QStdCtrls, QExtCtrls;
type
TFrmMain = class(TForm)
BtnTA: TButton;
BtnTB: TButton
www.eeworm.com/read/179744/9340964
bas mapsis.bas
Attribute VB_Name = "Module4"
Public bOKCancel As Boolean
Public StrSIS As String, StrWait As String, StrDir As String
Public ThePublicInPath As String, ThePublicOutPath As String, ThePublicPicture
www.eeworm.com/read/179744/9341077
bas table.bas
Attribute VB_Name = "Module2"
Option Explicit
Dim ColumnsN As Integer, Columns() As String, ColumnsType() As String
Dim NoCreateEllipse As Integer, Size As Single
Dim I As Integer
Public MapInfo
www.eeworm.com/read/375870/9346405
frm form1.frm
VERSION 5.00
Begin VB.Form Form1
BorderStyle = 3 'Fixed Dialog
Caption = "灰色按钮克星"
ClientHeight = 2610
ClientLeft = 45
ClientTop = 435
Cli
www.eeworm.com/read/179584/9349882
java addcharacter.java
package ECDictionaryUtil;
import java.io.IOException;
import java.io.ObjectOutputStream;
import java.util.HashMap;
public class AddCharacter {
/**
* 把字符串的汉字添加到词典中
*/
ObjectOutputSt
www.eeworm.com/read/375708/9352549
bas module1.bas
Attribute VB_Name = "Module1"
Public fMainForm As frmMain
Public flagRTedit As Boolean
Public gintRTmode As Integer
Public flagRedit As Boolean
Public gintRmode As Integer
Public flagBTedit As B