#!/usr/bin/env perl sub big { $a = shift; $b = shift; if ($a > $b) { return $a; } else { return $b; } } print "\n"; print big(22, 11).
確定! 回上一頁