Aprite il vostro interprete Perl
2
Creare una matrice e riferimento l'ultimo elemento dell'array digitando il seguente : .
@ TestScores = ( 97 , 92 , 89 , 85 , 77 , 72 , 68) ;
print $ testScores [ -1 ] ;
3 Premere il tasto " Enter ". Python restituisce " 68 ".
In questo esempio, si crea una serie di test di valutazione . Poi , torna Perl e stampa l'ultima voce , [ -1 ] , nella matrice " testScores " . Il valore [ -1 ] dice a Perl per spostarsi alla fine dell'array e restituire il valore.
Continuando l'esempio , se è stato specificato [ -2 ] , Perl restituisce " 72 ", il secondo per la ultimo elemento dell'array .
Programmazione © www.354353.com