アットウィキロゴ

LP01

<?php
$x[0][1]=2;
$x[0][2]=1;
$x[1][1]=1;
$x[1][2]=2;
$x[1][3]=1;
$b[1]=14;
$x[2][1]=1;
$x[2][2]=1;
$x[2][4]=1;
$b[2]=8;
$x[3][1]=3;
$x[3][2]=1;
$x[3][5]=1;
$b[3]=18;
for ($m=0;$m<4;$m++){
for ($n=1;$n<6;$n++){
print($x[$m][$n]);
print(",");
}
print($b[$m]);
print(',');
}
?>
最終更新:2009年06月28日 00:54