「Perl入門」rand()で乱数を返すサンプルコード

サンプルコード
#! /usr/bin/perl
use strict;
use warnings;

my $n = int(rand 10);

print ($n); # 0~10

Software

Posted by arkgame