代码搜索:integer
找到约 10,000 项符合「integer」的源代码
代码结果 10,000
www.eeworm.com/read/205091/15326728
frm frmpower.frm
VERSION 5.00
Object = "{5E9E78A0-531B-11CF-91F6-C2863C385E30}#1.0#0"; "MSFLXGRD.OCX"
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form frmPower
Caption
www.eeworm.com/read/201003/15418461
bas 逐步回归m2.bas
Attribute VB_Name = "modMethod"
'逐步回归
Option Explicit
'xy(1 To n, 1 To m+1):观测数据,已知,n是观测次数,m是自变量个数
'F1:指定的F临界值,用于引入,已知
'F2:指定的F临界值,用于剔出,已知
' 要求F1>=F2。如果F1=F2=0,则引入除线性相关外的全部变量
'F:F检验值,计算结果
'
www.eeworm.com/read/107788/15601882
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/105882/15656191
txt slang.txt
A Guide to the S-Lang Language
John E. Davis, davis@space.mit.edu
Mar 23, 2003
____________________________________________________________
Table of Contents
Preface
1. A Brief His
www.eeworm.com/read/104929/15681058
tex chap5.tex
% Chapter 5 of Concrete Mathematics
% (c) Addison-Wesley, all rights reserved.
\input gkpmac
\refin bib
\refin chap2
\refin chap4
\refin chap6
\pageno=153
\beginchapter 5 Binomial Coefficients
LET'S
www.eeworm.com/read/101960/15796191
pas fdi.pas
{++
f d i . p a s
Copyright (c) 1997 Alexander Staubo, all rights reserved.
Abstract:
Translation of fdi.h, part of the Cabinet SDK.
Revision history:
06/07/1997 20:17 alexs 1.0
www.eeworm.com/read/183260/9173698
sql integers.sql
REM integers.sql
REM Chapter 3, Oracle9i PL/SQL Programming by Scott Urman
REM This example shows different integeter types.
DECLARE
v_BinInt BINARY_INTEGER;
BEGIN
-- Assign the maximum va
www.eeworm.com/read/359831/10121932
cpp atom_tfhd.cpp
/*
* The contents of this file are subject to the Mozilla Public
* License Version 1.1 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy o
www.eeworm.com/read/425144/10379749
txt c++a.txt
Contents
[Trial version] C++大学教程
[Trial version] 第1章 编程简介
[Trial version] 第2章 控制结构
[Trial version] 第3章 函数
[Trial version] 第4章 数组
[Trial version] 第5章 指针与字符串
[Trial ver
www.eeworm.com/read/421644/10718349
npp forloop_whileloop.adb.npp
with Ada.Text_Io;
use Ada.Text_Io;
procedure forloop_whileloop is
Count : Integer; --count as Integer object
Count_To : constant Integer := 10; --integer constant
begin
Count := 1;
while Count