wget http://www.cpan.org/src/5.0/perl-5.20.1.tar.gz tar -xzf perl-5.20.1.tar.gz cd perl-5.20.1 ./Configure -des -Dprefix=$HOME/localperl make make test make install
上述这个过程大约耗时10多分钟
编辑第一个perl程序:
#!/usr/local/bin/perl $value = 9.01e+21 + 0.01 - 9.01e+21; print ("first value is ", $value, "\n"); $value = 9.01e+21 - 9.01e+21 + 0.01; print ("second value is ", $value, "\n");
运行第一个perl程序:
[root@mdw zcw]# perl program3_3.pl first value is 0 second value is 0.01
时间: 2024-10-26 18:04:32