代码搜索:integer

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

代码结果 10,000
www.eeworm.com/read/207372/15274293

pas pl0.pas

PROGRAM PL0(INPUT,OUTPUT,INPUT1,OUTPUT1); (*PL0 COMPILER WITH CODE GENERATION*) LABEL 99; CONST AL=10; (*LENGTH OF IDENTIFIERS*) NORW=14; (*# OF RESERVED WORDS*) TXMAX=100; (*LE
www.eeworm.com/read/207245/15276670

pas winskindlg.pas

unit WinSkinDlg; {$I Compilers.Inc} {$WARNINGS OFF} {$HINTS OFF} {$RANGECHECKS OFF} interface uses windows,Messages,SysUtils,Classes,Graphics,WinSkinMenu, forms,ExtCtrls; const
www.eeworm.com/read/207217/15279281

cpp ex3_01.cpp

// Exercise 3.1 The potential for trouble here comes in the statement that calculates the reciprocal. // If you write it as 1/denominator, the program won't work - integer division will take place,
www.eeworm.com/read/207217/15279283

cpp ex3_03.cpp

// Exercise 3.3 Using a bitwise operator to affect the binary representation of an integer. // The simplest way to invert the last bit of a number is to exclusive-OR the number with 1. // The effect
www.eeworm.com/read/207217/15279301

cpp main.cpp

// Exercise 12.4 Using a friend function - main.cpp /*********************************************************** Implementing compare()as a friend is quite simple. We must declare the function a
www.eeworm.com/read/207217/15279304

cpp main.cpp

// Exercise 12.2 Using a function with a reference parameter in the Integer class - main.cpp /*********************************************************** Using the version of compare()with the pass
www.eeworm.com/read/207183/15280385

pas gear.pas

program Gear; const maxn=30; ipf='gear.dat'; {输入数据文件名} opf='gear.out'; {输出数据文件名} type arraytype=array[1..maxn] of integer; set
www.eeworm.com/read/207183/15280421

pas band.pas

program program_of_band; var fin,fout:text; name:array[1..26] of char; {顶点的名称如A、B} sequence:array [1..26] of integer; {顶点顺序} perior,side:array [1..26,1..26] of integer; {优先级、邻接矩阵}
www.eeworm.com/read/207183/15280484

pas nta.pas

type newstring=string[15]; var f1,f2:text; n,m:integer; dd:array[1..15,1..15] of newstring; base:newstring; a:array[1..15,1..15] of char; mea:array[1..15,1..2] of integer;
www.eeworm.com/read/207183/15280500

pas chain.pas

program chain; type tp=array[1..2000] of integer; const in_f='chain.dat';out_f='chain.out'; var f:text; a,b:tp; an,n:longint; procedure init; begin assign(f,in_f); reset(