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 Both sides next revision
dvprog_12 [2019-03-25 08:54]
Daniel Viström
dvprog_12 [2019-03-25 08:55]
Daniel Viström
Line 17: Line 17:
   $ental = $tal % 10;   // % ger resten   $ental = $tal % 10;   // % ger resten
   $temp = (int)($tal / 10); // För att få heltalsdelen.   $temp = (int)($tal / 10); // För att få heltalsdelen.
-  $tiotal = $tal % 10;+  $tiotal = $temp % 10;
   $tal = $tiotal + 10 * $ental; // Vänder på talet.   $tal = $tiotal + 10 * $ental; // Vänder på talet.
 } }