Skip to content

Instantly share code, notes, and snippets.

@koji
Created July 21, 2013 07:48
Show Gist options
  • Save koji/6047850 to your computer and use it in GitHub Desktop.
Save koji/6047850 to your computer and use it in GitHub Desktop.
Perl入学式
#!/usr/bin/env perl
use strict;
use warnings;
my @array1; # 配列
# 3回入力する
for my $i (1..3) {
print $i."番目";
chomp($array1[$i-1] = <STDIN>);
}
print (sort @array1);
print "\n";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment