Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
Next revision Both sides next revision
prog1_11 [2013-04-29 09:34]
Daniel Viström
prog1_11 [2013-04-29 14:59]
Daniel Viström
Line 2: Line 2:
  
  
-<php> 
-/* 
 Rekursion utan dator: {{:rekursion.pdf|}} Rekursion utan dator: {{:rekursion.pdf|}}
-*/ 
-</php> 
  
 **Följande uppgifter ska lösas med hjälp av rekursion. Inga loopar med while eller liknande får användas.** **Följande uppgifter ska lösas med hjälp av rekursion. Inga loopar med while eller liknande får användas.**
Line 15: Line 11:
  
 <code php> <code php>
- +  if(isset($_POST['n'])){  
-  echo a($_POST['n']);+    echo a($_POST['n']); 
 +  }
 </code>  </code>