「Perl入門」rand()で乱数を返すサンプルコード 2020年6月16日サンプルコード #! /usr/bin/perl use strict; use warnings; my $n = int(rand 10); print ($n); # 0~10 SoftwarePosted by arkgame