Programacion - Control 2
Enviado por Carlos Carvajal • 12 de Julio de 2021 • Tarea • 1.397 Palabras (6 Páginas) • 211 Visitas
Control 2
Programación
Instituto IACC
31/08/2020
Desarrollo
1. Área de un triángulo:
- Declare las variables: base y altura (asigne el valor que desee)
- Declare la constante: C = 2 y utilícela en el programa
- Calcule el área de un triángulo. Investigue la fórmula de este cálculo.
CODIGO
<!DOCTYPE html>
<html>
<body>
<!--Formulario de ingreso de valores-->
<form method= "POST" action="area_traingulo.php">
<center>
<strong>ÁREA DE UN TRIÁNGULO - Ejercicio 01</strong></p>
Ingrese base: <input type ="text" name="base"></p>
Ingrese altura: <input type ="text" name="altura"></p>
<input type = "submit" value = "Calcular" name="btn"></p>
</center>
</form>
<?php
//declaración de variables
$b = $_POST['base'];
$h = $_POST['altura'];
//declaración de constante
define ('C', 2);
//cálculo
echo '<p>';
echo '<center>';
//echo 'Los valores ingresados son: ' .$b.' y '.$h.'</p>';
$area = ($h*$b)/C;
echo 'El área del triángulo de base '.$b.' y altura '.$h. ' es: </p>';
echo '<strong>'.$area. ' unidades cuadradas </strong>';
echo '<p>';
echo "<table border =1 >";
echo '<tr>';
echo '<th>Para encontrar el área de cualquier triángulo conocida
su altura y base, se debe aplicar la fórmula: A = (h * b) / 2. Donde
h es la altura y b es la base</th>';
echo '</tr>';
echo '</center>';
?>
</body>
</html>
CAPTURAS CÓDIGO Y NAVEGADOR[pic 1]
[pic 2]
[pic 3]
2. Área de un círculo:
- Declare las variables: radio (asigne el valor que desee)
- Declare la constante: pi = 3,1415
- Calcule el área del círculo. Investigue la fórmula de este cálculo.
CÓDIGO
<!DOCTYPE html>
<html>
<body>
<center><strong>ÁREA DE UN CÍRCULO - Ejercicio 02</strong></p>
<form method="POST" name="area_circulo.php">
Ingrese radio del circulo <input type="text" name="radio"></p>
<input type="submit" value="Calcular"></center>
</form>
<?php
echo '<center>';
//declaracion de constante
define("pi", 3.1415);
//Asignación a variable ingresada
$r = $_POST['radio'];
echo '<p>';
//echo 'El radio ingresado es: ' . $r . '</p>';
//cálculo
$area = ($r**2) * pi;
echo 'El área de círculo de radio ' . $r . ' es : </p>';
echo '<strong>' . $area . ' unidades cuadradas </strong>';
echo '</p>';
echo '<table border 1>';
//Definición área de un triángulo
echo '<th>Para encontrar el área del círculo, se debe aplicar la
fórmula: A = ( pi * r²). Donde r es el radio del círculo</th>';
echo '</center>';
?>
</body>
</html>
captura Código[pic 4]
CAPTURA DE PANTALLA - NAVEGADOR
[pic 5]
[pic 6]
3. Muestre en pantalla sus nombres, apellidos y su ciudad de nacimiento.
Código
<!DOCTYPE html>
<html>
<body>
<center><strong>MOSTRAR DATOS EN PANTALLA - Ejercicio 03</strong></p>
<form action="datos_pantalla.php" method="POST">
Ingrese nombres: <input type="text" name="nom"></p>
Ingrese Apellidos: <input type="text" name="ape"></p>
Ingrese Ciudad de nacimiento: <input type="text" name="ciu"></p>
<input type="submit" value="Presentar datos"></p></center>
</form>
<?php
$nombre = $_POST['nom'];
$apellido = $_POST['ape'];
$ciudad = $_POST['ciu'];
echo '<center>';
echo 'MIS DATOS PERSONALES </p>';
echo '<table border 1>';
echo '<tr>';
echo '<th>Nombres</th>';
echo '<th>Apellidos</th>';
echo '<th>Ciudad de nacimiento</th>';
echo '</tr>';
//datos ingresados
echo '<tr>';
echo '<th>' . $nombre . '</th>';
echo '<th>' . $apellido . '</th>';
echo '<th>' . $ciudad . '</th>';
echo '</tr>';
...