代码搜索:Programs
找到约 10,000 项符合「Programs」的源代码
代码结果 10,000
www.eeworm.com/read/357358/10211598
c fdctref.c
/* fdctref.c, forward discrete cosine transform, double precision */
/* Copyright (C) 1996, MPEG Software Simulation Group. All Rights Reserved. */
/*
* Disclaimer of Warranty
*
* These
www.eeworm.com/read/279234/10452462
pl fig18_08.pl
#!/usr/bin/perl
# Fig. 18.8: fig18_08.pl
# Demonstrates using backticks.
use warnings;
use strict;
my $date;
my $version;
if ( $^O =~ /Win/ ) {
$version = ( `ver` );
$date = ( `da
www.eeworm.com/read/279234/10452464
pl fig18_16.pl
#!/usr/bin/perl
# Fig. 18.16: fig18_16.pl
# Simple OLE example.
use warnings;
use strict;
use Win32::OLE;
chomp( my $line = );
my $word = new Win32::OLE( "Word.Application" )
www.eeworm.com/read/279234/10452496
pl fig04_08.pl
#!/usr/bin/perl
# Fig. 4.8: fig04_08.pl
# Manipulating the length of an array.
@array =
qw( zero one two three four five six seven eight nine );
# output the number of elements and the la
www.eeworm.com/read/279234/10452502
pl fig04_16.pl
#!/usr/bin/perl
# Fig. 4.16: fig04_16.pl
# Demonstrating hash slices.
%romanNumerals = ( one => 'I',
two => 'II',
three => 'III',
f
www.eeworm.com/read/279234/10452533
pl fig04_07.pl
#!/usr/bin/perl
# Fig. 4.7: fig04_07.pl
# Demonstrating the qw and .. operators.
@array = qw( this is an array of strings );
print "@array\n\n";
@array2 = ( 1 .. 5 );
print "Value\tRunning T