代码搜索:PL 有哪些应用?
找到约 10,000 项符合「PL 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/398630/7933108
h pl0.h
/**************************************************************************
* <mark>PL</mark>/0 语言编译程序,由江汉石油学院计算机科学系周云才根据清华大学出版社出版,
* 吕映芝,张素琴,蒋维杜编写的教材《编译原理》中第二章(<mark>PL</mark>/0编译程序的实现)
* 以及附录A中的代码改编而成。
* 代码版权由周云才拥有,使用者必须 ...
www.eeworm.com/read/398630/7933114
cpp pl0.cpp
#include "pl0.h"
/**************************************************************************
* PL/0 语言编译程序,由江汉石油学院计算机系周云才根据清华大学出版社出版,
* 吕映芝,张素琴,蒋维杜编写的教材《编译原理》中第二章(PL/0编译程序的实现)
* 以及附录A中的代码改编而成。
*
www.eeworm.com/read/297458/8016536
pl atail-f.pl
#Copyright (C)2001-2004 Altera Corporation
#Any megafunction design, and related net list (encrypted or decrypted),
#support information, device programming or simulation file, and any other
#associat
www.eeworm.com/read/197184/8025356
pl make_reports.pl
#!/usr/bin/env perl
# make_reports.pl
#
# Generates very close approximations of the standard Heritrix
# crawl reports directly from the crawl log.
#
# Useful if Heritrix ends uncleanly and is unable
www.eeworm.com/read/397645/8031359
cpp pl0.cpp
// PL0.cpp : Defines the class behaviors for the application.
//
#include "stdafx.h"
#include "PL0.h"
#include "PL0Dlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char T
www.eeworm.com/read/297150/8050198
pl p0.pl
%% define words:
determiner(D) :-
member(D,[the,a,an]).
noun(N) :-
member(N,[dog, street, ball, bat, boy]).
adj(A) :-
member(A,[fast, little, big]).
prep(P) :-
member(P,[down, unde
www.eeworm.com/read/297150/8050307
pl test1.pl
% A simple Prolog test file:
father(ken,mark).
father(ken,ron).
father(ron,anthony).
grandfather(X,Z) :-
father(X,Y), father(Y,Z).
www.eeworm.com/read/196838/8055171
txt pl0.txt
const a=10;
var b,c;
procedure p;
begin
c:=b+a
end;
begin
read(b);
while b#0 do
begin
call p;
write(2*c);
read(b)
end
end.
www.eeworm.com/read/196838/8055176
h pl0.h
#ifndef pl0_h
#define pl0_h
/*typedef enum{
false,
true
}bool;*/ //C++中已定义的数据类型
#define norw 13 //关键字个数
#define txmax 100 //名字表容量
#define nmax
www.eeworm.com/read/196838/8055178
cpp pl0.cpp
/*使用方法:
运行后输入PL/0源程序文件名
回答是否输出虚拟机代码
回答是否输出名字表
fa.tmp 输出虚拟机代码
fa1.tmp 输出源文件及其各行对应的首地址
fa2.tmp 输出结果
fas.tmp 输出名字表
*/
#include
#include"pl0.h"
#include"string.h"