martes, 17 de noviembre de 2009

PRACTICA EXTRA 3

PSEUDOCODIGO
Inicio
int numerodo
{
Print “ Introduce Vlores Enteros De 1 a 10 y 0 Para Salir: "Leer num
switch (numero)
{
case 0:
Print “Salida Del Programa"
breakcase 1:
Print “Su Equivalente En Numero Romano Es: I"
breakcase 2:
Print "Su Equivalente En Numero Romano Es: II"
breakcase 3:
Print "Su Equivalente En Numero Romano Es: III"
breakcase 4:
Print "Su Equivalente En Numero Romano Es: IV"
breakcase 5:
Print "Su Equivalente En Numero Romano Es: V"
breakcase 6:
Print "Su Equivalente En Numero Romano Es: VI"
breakcase 7:
Print "Su Equivalente En Numero Romano Es: VII"
breakcase 8:
Print "Su Equivalente En Numero Romano Es: VIII"breakcase 9:
Print "Su Equivalente En Numero Romano Es: IX"
breakcase 10:
Print "Su Equivalente En Numero Romano Es: X"
breakdefault:
Print "Error ATratar de Leer El Numero Verfiique si es Correcto"break
}}
while (numero != 0)
Fin
CONSOLA







WINDOWS








PRACTICA EXTRA 2

PSEUDOCODIGO
1. INICIO
real lim, peso, sum;sum = 0
Imprimir "INTRODUCE EL LIMITE DE LA PESCA:
"leer lim"
do
{
Imprimir "INTRODUCE EL PESO INDIVIDUAL
"Leer pesosum = sum + peso
if (sum > lim)
{
Imprimir "EL LIMITE HA EXCEDIDO"
Imprimir "EL PESO TOTAL ES ", sum
}
if (sum == lim)
{
Imprimir "HA LLEGADO AL LIMITE"
Imprimir "EL PESO TOTAL ES ", sum
}}
while (sum <>
FIN

CONSOLA

WINDOWS


PRACTICA EXTRA 1

1.Escriba un programa que calcule e imprima el promedio de varios enteros.Suponga que el ultimo valor que lee es el numero 9999.

Pseudocodigo

Inicio

int valor, suma, promedio, n

n = 0

sumero = 0

do

{

Print "Introduce Valor Numerico

"Leer
valorsuma=suma+valor

n=n+1

}

while (valor!=9999)

suma = suma - 9999

n = n - 1
promedio = suma / n

Print "El promedio es: ", promedio

Fin

CONSOLA



WINDOWS








PRACTICA 10-3 VISUAL

PRACTICA EN VISUAL




PRACTICA 10-2 VISUAL

PRACTICA EN VISUAÑ



PRACTICA 10-1 VISUAL




jueves, 12 de noviembre de 2009

PRACTICA 10-3

PSEUDOCODIGO
Incio
double[,] voltajes = new double[3, 5]
int c1 = 0, c2 = 0
int r, cfor(r=0; step 3 r++)
{
for(c=0; step 5 c++)
{
Print ("voltajes “r,c)
Read voltajes [r,c]
}}
for (r = 0; step 3 r++)
{
for (c = 0; step 5 c++)
{
if (voltajes[r, c] <>
{
c1 = c1 + 1
}
else{
if (voltajes[r, c] >= 60)
{
c2 = c2 + 1
}}}}
Raed ( c2)
Raed ( c1)
Fin




PRACTICA 10-2

Pseudocodigo
Incio
int[] resistencia = { 16, 27, 39, 56, 81 }
int[] corriente=new int[5]
int[] portencia=new int[5]
int total = 0int Ifor (I = 0; step 5 I++)
{
Print ("Introduce Corriente", I + 1)
Read corriente[I]portencia[I] = resistencia[I] * corriente[I] * corriente[I]total = total + portencia[I]
}
Print ("\n\tResistencia Corriente Potencia")
Print (" ---------------------------------------------")
for(I=0; estep 5 I++)
{
Print ("\t{0} \t {1} {2}", resistencia[I], corriente[I], portencia[I])
}
Read ("Total Es:",total)
Fin




PRACTICA 10-1

Pseudocodigo
Incio
double pend = { 17.24, 25.63, 5.94, 33.92, 3.71, 32.84, 35.93, 18.34, 6.92 }
double mayor = pend[0]
double menor = pend[0]
int IPrint ("Pendiente")
for (I = 1; step 8 I = I + 1)
{
Print (pend[I])
if (pend[I] > mayor)
{
mayor = pend[I]
}}
for (I = 1; I <= 8; I = I + 1)
{
if (pend[I] < menor =" pend[I]">)
fin



martes, 3 de noviembre de 2009

PRACTICA 9-1WINDOWS




PRACTICA 9-1

PSEUDOCODIGO
1- INICIO
int calificaciones [14]={89,95,72,83,99,54, 86, 75, 92, 73,79,75, 82, 73}
int desviacion [14]
int suma=0,promedio,i,varianza
for i=0 to step i=i+1
{
suma=suma+calificacion[i]
}
promedio=suma/14
for i=0 to step i=i+1
{
desviacion [i]=calificacion[i]-promedio
{
for i=0 to step i=i+1
}
print ("calificacion")
for i=0 to step i=i+1
{
print calificacion [i],desviacion[i]
}
suma=0
for i=0 to step i=i+1
{
suma=suma+desviacion[i]*desviacion[i]
}
varainza=suma/14
print"la varaianzaes",varianza
fin