Advertisement
Guest User

Untitled

a guest
Mar 31st, 2020
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <?php
  2. require "inc.sessioonid.php";
  3. ?>
  4. <!DOCTYPE html>
  5. <html lang="et">
  6. <head>
  7. <title>Ruutvõrrandi lahendamise statistika</title>
  8. <meta charset="utf-8">
  9. <style>
  10. input{
  11. width: 50px;
  12. }
  13. .nupp{
  14. width: auto;
  15. }
  16. body{
  17. background-color: #DCDCDC;
  18. font-family: "Comic Sans Ms";
  19. color: #000000;
  20. }
  21. </style>
  22. </head>
  23. <body>
  24.  
  25. <?php
  26.  
  27. //NAVIGATSIOONI JURA
  28.  
  29. include 'inc.navigatsioon.php';
  30.  
  31. ?>
  32.  
  33. <?php
  34.  
  35. $mida = array();
  36.  
  37. $jura = file("failid/ruutvorrand.txt");
  38.  
  39. foreach ($jura as $j) {
  40.  
  41. $muut = substr( $j, 0, strpos( $j, ' ' ) );
  42. $mida[] = $muut;
  43.  
  44. }
  45.  
  46. $hihi = array_count_values($mida);
  47. arsort($hihi);
  48. $pop = array_keys($hihi);
  49.  
  50. echo "<br>Kõige tihedamini esinev ruutliikme kordaja on ".$pop[0];
  51.  
  52. ?>
  53.  
  54. </body>
  55. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement