代码搜索:如何学习 PL?

找到约 10,000 项符合「如何学习 PL?」的源代码

代码结果 10,000
www.eeworm.com/read/176083/9518014

pl0 sort.pl0

PROGRAM SORT3; VAR A:ARRAY[1..10] OF REAL; TEMP:REAL; I,J:INTEGER; BEGIN FOR I:=1 TO 10 DO READ(A[I]); FOR I:=1 TO 10 DO FOR J:=1 TO 10-I DO IF A[J]
www.eeworm.com/read/176083/9518016

dsk pl01.dsk

[Closed Files] File_0=SourceModule,'F:\TC\PL01\PL0.CPP',0,1,668,14,690,0,0 File_1=SourceModule,'D:\PROGRAM FILES\BORLAND\CBUILDER5\INCLUDE\windef.h',0,1,153,46,162,0,0 File_2=SourceModule,'D:\Progr
www.eeworm.com/read/372012/9525516

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 # | lin
www.eeworm.com/read/175813/9529986

pl make-enums.pl

# $Header: /home/jcb/newmj/RCS/make-enums.pl,v 11.0 2001/05/17 18:23:11 jcb Rel $ # make-enums.pl #****************** COPYRIGHT STATEMENT ********************** #* This file is Copyright (c) 2000 by
www.eeworm.com/read/174700/9576362

txt lang_pl.txt

// Polish language module for EVEREST // Translated by Maciej Orzech (morzech@gd.onet.pl) // Last updated: Apr 27, 2004 // wersja troch
www.eeworm.com/read/365783/9847689

pl phone1.pl

#!/usr/bin/perl -w %phonebook = ( "Bob" => "247305", "Phil" => "205832", "Sara" => "226010" ); # We created our hash just like a list, but used the => operator # (which is equivalent to a comma in m
www.eeworm.com/read/365783/9847691

pl cd_db.pl

#! /usr/bin/perl -w # Perl translation of chapter 2's shell CD database # Copyright (C) 1999 Wrox Press. # This program is free software; you can redistribute it and/or modify # it under the terms o
www.eeworm.com/read/365783/9847694

pl phone2.pl

#!/usr/bin/perl -w %phonebook = ( "Bob" => "247305", "Phil" => "205832", "Sara" => "226010" ); print "Sara's phone number is $phonebook{Sara}\n"; print "Bob's phone number is $phonebook{Bob}\n";
www.eeworm.com/read/365783/9847699

pl hello2.pl

#!/usr/bin/perl -w # hello2.pl $message = "Hello, World\n"; print $message;
www.eeworm.com/read/365783/9847702

pl hello3.pl

#!/usr/bin/perl -w # hello1.pl @message = ("\n", " ", "World", "Hello,"); print $message[3], $message[1], $message[2], $message[0];