Faustino Posted May 20, 2020 at 07:29 PM Report Share #618177 Posted May 20, 2020 at 07:29 PM Boas! Tenho que fazer um código que calcule a Média, a Moda e a Mediana em PHP, mas apenas sei fazer a média. Podem indicar-me a como fazer os outros 2? Em baixo está o código que já fiz: <!DOCTYPE html> <html> <head> <title>ex 8 - ficha </title> </head> <body> <?php $c=1; while ($c<=15) { $arr[$c]=mt_rand(0,9); $soma=$soma+$arr[$c]; $c=$c+1; }; $media=$soma/15; ?> </body> </html> Obrigado antecipadamente. Link to comment Share on other sites More sharing options...
M6 Posted May 21, 2020 at 03:45 PM Report Share #618187 Posted May 21, 2020 at 03:45 PM Podes ver como se fazem os outros dois aqui: https://matematicabasica.net/media-moda-e-mediana/ 10 REM Generation 48K! 20 INPUT "URL:", A$ 30 IF A$(1 TO 4) = "HTTP" THEN PRINT "400 Bad Request": GOTO 50 40 PRINT "404 Not Found" 50 PRINT "./M6 @ Portugal a Programar." Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now