代码搜索:pascal
找到约 9,253 项符合「pascal」的源代码
代码结果 9,253
www.eeworm.com/read/472935/6860336
c algo3-9.c
/* algo3-9.c 用递归函数求解迷宫问题(求出所有解) */
#include /* 根据《PASCAL程序设计》(郑启华编著)中的程序改编 */
struct PosType /* 迷宫坐标位置类型 */
{
int x; /* 行值 */
int y; /* 列值 */
};
#define MAXLENGTH 25 /* 设
www.eeworm.com/read/395218/8188870
txt delphi的8个技巧.txt
Delphi的8个技巧
1. delphi怎样调用外部EXE文件?
uses WinProcs;
.
begin
WinExec(......);
.
end.
和调用Pascal库函数没什么两样。
2. Delphi hint的字体和色彩如何改变
Delphi中TApplication的属性有HintColor及HintPause。可
www.eeworm.com/read/392789/8325919
c algo3-9.c
/* algo3-9.c 用递归函数求解迷宫问题(求出所有解) */
#include /* 根据《PASCAL程序设计》(郑启华编著)中的程序改编 */
struct PosType /* 迷宫坐标位置类型 */
{
int x; /* 行值 */
int y; /* 列值 */
};
#define MAXLENGTH 25 /* 设
www.eeworm.com/read/173560/9651047
c algo3-9.c
/* algo3-9.c 用递归函数求解迷宫问题(求出所有解) */
#include /* 根据《PASCAL程序设计》(郑启华编著)中的程序改编 */
struct PosType /* 迷宫坐标位置类型 */
{
int x; /* 行值 */
int y; /* 列值 */
};
#define MAXLENGTH 25 /* 设
www.eeworm.com/read/368531/9690795
c algo3-9.c
/* algo3-9.c 用递归函数求解迷宫问题(求出所有解) */
#include /* 根据《PASCAL程序设计》(郑启华编著)中的程序改编 */
struct PosType /* 迷宫坐标位置类型 */
{
int x; /* 行值 */
int y; /* 列值 */
};
#define MAXLENGTH 25 /* 设
www.eeworm.com/read/269967/11053172
c algo3-9.c
/* algo3-9.c 用递归函数求解迷宫问题(求出所有解) */
#include /* 根据《PASCAL程序设计》(郑启华编著)中的程序改编 */
struct PosType /* 迷宫坐标位置类型 */
{
int x; /* 行值 */
int y; /* 列值 */
};
#define MAXLENGTH 25 /* 设
www.eeworm.com/read/106800/15621438
c algo3-9.c
/* algo3-9.c 用递归函数求解迷宫问题(求出所有解) */
#include /* 根据《PASCAL程序设计》(郑启华编著)中的程序改编 */
struct PosType /* 迷宫坐标位置类型 */
{
int x; /* 行值 */
int y; /* 列值 */
};
#define MAXLENGTH 25 /* 设
www.eeworm.com/read/101790/15812441
htm subject_52019.htm
序号:52019 发表者:圆锥曲线 发表日期:2003-09-06 18:26:30
主题:关于PeekMessage()的提问,请大家帮忙解释一下
内容:int PASCAL WinMain( HINSTANCE hInstance,HINSTANCE hPrevInstance,LPSTR lpCmdLine,int nCmdShow){ 
www.eeworm.com/read/100140/15882884
asm extstr.asm
model large extend_text,pascal
include extend.inc
extrn ExtMul:far,Comp2Ext:far,ExtPow10:far
.data
C1e8 dt 1e8
.code Extend_Text
Argm Src,dword,1
Argm Dst,dword,1
Loc Temp,wo
www.eeworm.com/read/163898/10140805
txt delphi4code.txt
Delphi 4 程序员代码编写标准指南
版权所有 1998 Xavier Perched和 Steve Teiseira
一、序言
二、通用源代码格式规则
2.1 缩格
2.2 页边空格
2.3 Begin...End 配对
三、Object Pascal
3.1 括号
3.2 保留字和关键字
3.3 过程