代码搜索:integer

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

代码结果 10,000
www.eeworm.com/read/186780/8910705

pl0 gcd.pl0

PROGRAM GMN; VAR F,X,Y:INTEGER; FUNCTION GCD(M,N:INTEGER):INTEGER; BEGIN IF N=0 THEN GCD:=M ELSE GCD:=GCD(N,M MOD N); END; BEGIN X:=15; Y:=10; F:=GCD(X,Y); WRITE(F); END.
www.eeworm.com/read/186780/8910710

pl0 justfor.pl0

PROGRAM XYZ; VAR I:INTEGER; BEGIN FOR I:=10+3 DOWNTO -1-(-2) DO WRITE(I); END.
www.eeworm.com/read/383867/8913566

cpp rmb.cpp

#include // must define AnsiString before rmb.h #pragma hdrstop // only for C++ Builder #include #include "rmb.h" //------------------------------------------
www.eeworm.com/read/383822/8915569

v loop2.v

module loop2; integer i; initial begin i=0; while(i
www.eeworm.com/read/383822/8915572

v loop3.v

module loop3; integer i; initial begin i=0; repeat(4) begin $display ("i=%h",i); i=i+1; end end endmodule
www.eeworm.com/read/284556/8919285

cc list.cc

// list.cc // Routines to manage a singly-linked list of integers. // // A "ListElement" is allocated for each item to be put on the // list; it is de-allocated when the item is removed. This
www.eeworm.com/read/284554/8919346

c prog3.c

/* 请编写函数 void fun (int x, int pp[], int *n),它的功能是:求出能整除x且不是偶数的各整数,并按从小到大的顺序放在pp所指的数组中,这些除数的个数通过形参n返回。 例如,若x中的值为30,则有4个数符合要求,它们是1,3,5,15。 注意:部分源程序给出如下。 请勿改动主函数main和其他函数中的任何内容,仅在函数fun的花括号中填入所编 ...
www.eeworm.com/read/186661/8920510

pas unit3.pas

//后台管理扫描线程类 unit Unit3; interface uses Classes,StdCtrls,Windows,SysUtils,ComCtrls,wininet; var CS:TRTLCriticalSection; //定义全局临界区 type scanManagerThread = class(TThread) pri
www.eeworm.com/read/186625/8922188

ctl getpixelctrl.ctl

VERSION 5.00 Begin VB.UserControl GetPixelCtrl ClientHeight = 1275 ClientLeft = 0 ClientTop = 0 ClientWidth = 1920 ScaleHeight = 1275 ScaleWid
www.eeworm.com/read/427660/8926902

pas u_dm.pas

unit u_dm; interface uses SysUtils, Classes, DB, ADODB,Dialogs,Forms,Controls; type TDM = class(TDataModule) con1: TADOConnection; EmployeeInfo: TADOQuery; temp: TADOQuer