sábado, 26 de noviembre de 2011

EJERCICIOS

ESTRUCTURAS SECUENCIALES


EJERCICIO 1

EJERCICIO 2

EJERCICIO 3

EJERCICIO 4

EJERCICIO 5

EJERCICIO 6

EJERCICIO 7

EJERCICIO 8

EJERCICIO 9

EJERCICIO 10

ESTRUCTURAS CONDICIONALES


EJERCICIO 1

EJERCICIO 2

EJERCICIO 3

EJERCICIO 4

EJERCICIO 5

EJERCICIO 6

EJERCICIO 8

EJERCICIO 9

EJERCICIO 10 PARTE 1

EJERCICIO 10 PARTE 2

CONDICIONALES COMPUESTAS


EJERCICIO 1

EJERCICIO 2

EJERCICIO 3

EJERCICIO 4

EJERCICIO 5

EJERCICIO 6

EJERCICIO 8

CÓDIGO FUENTE SUPERMERCADO

<html>
<head>
<title>MERCADO</title>
</head>
<body>
<center>
<h2>
SUPERMERCADO</h2>
<script language="Javascript">

var nombre;
var producto;
var valor;
var cantidad;
var acum=0;
var iva=0.16;
var acumiva=0;
var p;
var total;
var D;
D=1;

while(D!=0){

nombre=prompt('Bienvenido,Qué producto desea llevar?','');

valor=prompt('Ingrese el valor del producto:','');

cantidad=prompt('Ingrese la cantidad del producto','');

producto=valor*cantidad;

p=iva*producto;

acum= acum+producto;

acumiva= acumiva+p;

total=acum+acumiva;

document.write('
');
document.write('El valor de la compra es:'+producto);
document.write('
');
document.write('El recargo del iva es:'+p);
document.write('
');
document.write('El total de la compra es:'+total);


if(total>200000){
document.write('
');
document.write('Se descuenta el iva debido a que su compra es superior a 200 000 ','');
document.write('
');
document.write('Con el descuento del iva, el costo total es:'+acum);
}
D=prompt('Oprima 1 si quiere seguir comprando, u oprima 0 en su defecto','');
}


</script>


</body>
</html>