Ejercicio en php base y exponente, Veamos en este ejercicio como podemos realizar la siguiente operación:
Pedir la base y el exponente, y
realizar el cálculo mediante sumas,
Ejemplo:
Base: 5 exp: 4
0+5=5
5+5=10
10+5=15
15+5=20
20+5=25
0+25=25
25+25=50
50+25=75
75+25=100
100+25=125
0+125=125
125+125=250
250+125=375
375+125=500
500+125=625
Ejercicio en Php (Pedir la base y el exponente, y realizar el cálculo mediante sumas)
1
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
< !DOCTYPE html>
<html lang=«en»> <head> <meta charset=«UTF-8»/> <title>Cálculo</title> </head> <body> <form action=«calculo.php» method=«post»> <label for=«n1»>Base:</label> <input type=«text» name=«n1»/> <br /> <label for=«n2»>Exponente:</label> <input type=«text» name=«n2»/> <br /> <input type=«submit» value=«Validar»/> </form> </body> </html><?php if($_POST){ $n1 = $_POST[‘n1’]; $n2 = $_POST[‘n2’]; $au=0; $r=0; $c=0; $t=0; $x=$n1; for ($j=1; $j < $n2; $j++) { for ($i=0; $i < $n1; $i++) { if($r==0){ $r = 0 + $x; echo «».$c.«+».$r.«=».$r.«<br>»; }else{ $t = $r; $au = $au + $r; echo «».$au.«+».$x.«=».($au+$t).«<br />»; } } $x = $au+$r; $t=0; $au=0; $r=0; echo «<br />»; } } ?> |