请教:有谁知道怎样将处理结果后的数组分别写入到一个Excel文件的两个sheet中去?

请教:有谁知道怎样将处理结果后的数组分别写入到一个Excel文件的两个sheet中去?

my @start_time=qw(1 2 3 4 5 6 8 9);
my @end_time=qw(2 4 5 6 7 9 11 12);
my $j=0;    my $count=0;  my @IO;
for ( my $i=$j; $i<@start_time;$i++) {
   here: for ( $j=$i; $j<@end_time;$j++) {
             if ($end_time[$j]-$start_time[$i]==3) {
             $IO[$count]=$j-$i+1;   print $IO[$count];
             $count=$count+1;
             print $count;
               print $j;
                 print $i."\n";

             last here;
             }
             else { next;
             }
          }
}

上述程序已经调试成功,怎样可以将数组@start_time和@end_time写入Excel.xls/sheet1中,而@IO写入Excel.xls/sheet2中?
用 SimpleExcel 吧
是Windows环境的话,建议使用Win32::OLE模块,ActivePerl自带的。
已解决,谢谢~