Created
December 3, 2015 03:25
-
-
Save tomcha/dc1c3aa10f0fc8b6c92a to your computer and use it in GitHub Desktop.
38
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
my @array; | |
for my $i (1..10){ | |
push @array, $i; | |
} | |
my $sum = $array[2] + $array[5] + $array[9]; | |
print "3番目の要素、6番目の要素、10番目の要素の合計は$sumです。\n"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment