代码搜索:PL 有哪些应用?
找到约 10,000 项符合「PL 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/160034/10577358
h pl0.h
#ifndef __PL0_H
#define __PL0_H
#include
class CCifa;
class CYufa;
class CBiaoge;
class CDaima;
class CErrors;
class CPlCompiler
{
public:
CPlCompiler(char *filename);
~CPl
www.eeworm.com/read/160034/10577394
cpp pl0.cpp
#include
#include "pl0.h"
#include "cifa.h"
#include "errors.h"
#include "biaoge.h"
#include "daima.h"
#include "yufa.h"
CPlCompiler::CPlCompiler(char *filename)
{
if (fp=fopen(f
www.eeworm.com/read/160034/10577419
pl test7.pl
const z=0;
var head,foot,cock,rabbit,n;
begin
n:=z;
read(head,foot);
cock:=1;
while cock
www.eeworm.com/read/160034/10577426
pl test2.pl
var a,b,c;
begin
read(a,b,c);
if a>0 then write(b) else write(c);
write(a,b,c);
end.
www.eeworm.com/read/160034/10577435
pl test6.pl
var a;
begin
if a=3 then
begin
if a=4 then a:=a+1;
a:=a-1
end
end.
www.eeworm.com/read/160034/10577440
pl test9.pl
const a=10;
var b,c;
procedure p;
var d;
begin
d:=20;
c:=d/a;
c:=c+b;
end;
begin
read (b);
while b#0 do
begin
call p;
write(2*c);
read(b);
end
www.eeworm.com/read/160034/10577445
pl test4.pl
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/160034/10577453
pl test5.pl
var x,y;
procedure p;
var a;
procedure q;
var b;
begin
b:=10;
end;
procedure s;
var c,d;
procedure r;
var e,f;
begin
call q;
end