代码搜索:PL 有哪些应用?
找到约 10,000 项符合「PL 有哪些应用?」的源代码
代码结果 10,000
www.eeworm.com/read/239610/13267317
gif pl_1.gif
www.eeworm.com/read/324219/13278818
pl cb_generator.pl
# | file: cb_generator.pl
# |
# | This SOPC Builder Generator program is provided by
# | the Component Builder application. It is copied
# | straight across and is data-driven from its command
#
www.eeworm.com/read/239373/13283197
java pl0.java
import java.io.*;
import java.lang.*;
import java.util.*;
/*错误号
0 ,"缺少左括号"
1 ,"非法字符:赋值符号:="
2 ,"等号后的字符为非法字符"
3 ,"缺少等号"
4 ,"声明过程中遇到的字符不是标识符"
5 ,"缺少分号"
6 ,"非法语句"
7 ,"整数大小越界"
www.eeworm.com/read/239373/13283208
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/239373/13283214
pl test1.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/239373/13283216
class pl0.class
www.eeworm.com/read/239373/13283222
pl test4.pl
const n=20;
var f1,f2,f,i;
begin
f1:=1;
f2:=1;
i:=1;
while i
www.eeworm.com/read/239373/13283231
pl test3.pl
var x,y,rem;
begin
read(x);
read(y);
repeat
rem:=x-y*(x/y);
x:=y;
y:=rem
until rem=0;
write(x)
end.
www.eeworm.com/read/239327/13287090
pl antiexcel-parse.pl
#!/usr/bin/perl
# Excel parser
# It is print an excel file in a semicolon delimited form.
# I saw this example among in the spreadsheet-parseexcel perl library's
# examples.
# Rewritten by Peter Bor
www.eeworm.com/read/137489/13320031
pl keytab-lilo.pl
#!/usr/bin/perl
$DEFAULT_MAP = "us";
$DEFAULT_EXT = ".map";
sub usage
{
print STDERR
"usage: $0 [ -p old_code=new_code ] ...\n".
(" "x(8+length $0))."[path]default_layout[.map] ] ".