seth: Benötige Hilfe bei Algorithmus

Beitrag lesen

gudn tach!

na, supi. hab gedacht, ich haette "vorschau" noch aktiviert. war aber nicht mehr so. also jetzt in bunt.

  
<?php  
  $no_tables = ceil($_POST['rounds']/3); // anzahl an tabellen  
  $last_table = $_POST['rounds']%3; // anzahl an spalten in letzter tabellen  
  $input .= '';  
  for($tab=1; $tab<=$no_tables; ++$tab){  
    $input .= '<table><tr>';  
    $no_cells = ($tab==$no_tables && $last_table)? $last_table : 3;  
    for($cell=1; $cell<=$no_cells; ++$cell)  
      $input .= '"<th></th><th>Runde '.$tab+cell:.'</th>';  
    $input .= '</tr></table>';  
  }  
?>

wenn ich mich nicht vertan habe, liefert das bei n runden n/3 tabellen mit 3 doppelspalten und falls (n mod 3>0) gilt noch eine zusaetzliche tabelle mit den restlichen n mod 3 doppelspalten.

hier war mit "/" die ganzzahlige division gemeint, also das, was haeufig mit "div" bezeichet wird, aber hier nix mit ableitungen zu tun hat.

prost
seth