代码搜索:integer
找到约 10,000 项符合「integer」的源代码
代码结果 10,000
www.eeworm.com/read/114572/15047542
pas 八皇后问题.pas
program queen;
var
key,i,j,m,n,z:integer;
a:array [1..8,1..8] of integer;
{占据}
procedure p1(i,j:integer);
var r:integer;
begin
for r:=1 to 8 do
begin
if a[i,j]=0 then a[i,j]:=-i;
if a[r,j]=
www.eeworm.com/read/215745/15050232
f lapacksubs.f
SUBROUTINE SGEEV( JOBVL, JOBVR, N, A, LDA, WR, WI, VL, LDVL, VR,
$ LDVR, WORK, LWORK, INFO )
*
* -- LAPACK driver routine (version 3.0) --
* Univ. of Tennessee, Univ.
www.eeworm.com/read/215654/15055098
pas unit1.pas
unit unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls, Grids, Buttons,math;
const long=255;
type
Tfrmshuju
www.eeworm.com/read/114100/15111572
txt 在同一行定义两个byte型变量,则向二进制文件输出时就会发生错误.txt
问 题 在 于 你 的 定 义 方 法 。 在 VB看 来
Dim by, mytt As Byte
和
Dim by As Byte, mytt As Byte
是 不 同 的 定 义 。 前 者 by是 Variant类 型 ( 因 为 你 没 有 说 明 它 的 类 型 ) , 而 后 者 by是 Byte类 型 。 而 对 于 你 的 情 况
www.eeworm.com/read/213575/15130165
txt jpeg2000.txt
The following is from the JasPer Software Reference Manual (Version 1.600.0)
Michael D. Adams
Assistant Professor
Dept. of Electrical and Computer Engineering
University of Victoria
Vic
www.eeworm.com/read/210671/15194018
cpp fig01_06.cpp
// Fig. 1.6: fig01_06.cpp
// Addition program
#include
int main()
{
int integer1, integer2, sum; // declaration
std::cout
www.eeworm.com/read/207702/15264477
txt input.txt
program test;
integer i;
var j;
real k;
if i>j
j=i
end;
`
www.eeworm.com/read/207183/15280472
pas divide.pas
program Divide;
type tp=array [1..20,1..20] of byte; {棋盘的数据类型}
ts=array [1..2] of shortint; {二维坐标数据类型}
ta=array [1..100] of ts; {坐标组数据类型,描述A或B部分的形状}
var source,extend,ss:tp;
a
www.eeworm.com/read/169775/5410424
c strtol.c
/* strtol.c - strtol file for stdlib */
/* Copyright 1992-1995 Wind River Systems, Inc. */
/*
modification history
--------------------
01f,11feb95,jdi doc fix.
01e,13oct93,caf ansi fix: added ca
www.eeworm.com/read/169775/5410426
c strtoul.c
/* strtoul.c - strtoul file for stdlib */
/* Copyright 1992-1993 Wind River Systems, Inc. */
/*
modification history
--------------------
01d,08feb93,jdi documentation cleanup for 5.1.
01c,21sep92