miƩrcoles, 16 de diciembre de 2009

PRACTICA EXTRA UNIDAD 3

MEDIO ARMONICO
PSEUDOCODIGO
int[] x = { 1, 2, 3, 4, 5, 6, 7, 8, 9,10};
int maximo = x[0];
int minimo = x[0];
int N = 0, intervalo = 0;
for (N = 0 to N <= 15 step N++)
{
for (N = 0 to N <>
{
if (x[N] > maximo)
{
maximo = x[N];
}
if (x[N] <>
{
minimo = x[N];
}
}
intervalo = maximo - minimo;
print"El intervalo de los valores del arreglo x es:{0} ",intervalo;
FIN
VISUAL


CONSOLA









PRACTICA EXTRA EXAMEN 3

MAXIMO Y MINIMO
PSEUDOCODIGO
int[] ex = { 12, 6, 5, 32, 7, 4, 12, 88, 42, 2 };
int suma = 0, i;
double arm;
for (i = 0 to i <= 5 step i = i + 1)
{
suma = suma + ex[i];
}
arm = 10.0 / suma;
print"SUMA= " + suma;
print"el medio armonico es: " + arm;
FIN
VISUAL



CONSOLA








PRACTICA 13-2

PSEUDOCODIGO
int ide;
double[] calif
int total
public estudiante()
{
ide=0
calif=new FLOAT[5] total=0;
}
public void introduceide(int nc)
{
ide=nc
}
public void introducecalif(FLOAT nota)
{
calif[total]=nota total++
}
public FLOAT promedio()
{
double suma=0.0f
int i for i=0 step total i=i+1
{
suma=suma+calif[i]
}
return suma/total
}
public int mostraride()
{
return ide
}
static void Main(string[] args)
{
int c = 0,
bandera = 0
,nocontrol FLOAT examen estudiante e1 = new estudiante()
do
{
PRINT("introduce identificacion estudiante;")
nocontrol = int.Parse(Console.ReadLine()) e1.introduceide(nocontrol)
PRINT("\nIntroduce calificacion (<=5)")
c = int.Parse(Console.ReadLine());
for (int i = 0; i <>
{
PRINT("introduce calificacion {0} examen;", i + 1)
PRINT examen e1.introducecalif(examen)
}
PRINT("identificacion alumno ="+ e1.mostraride())
PRINT("Promedio =" + e1.promedio())
PRINT("presione 1 para registar otro estudiante y 0 para salir ")
bandera = int.Parse(Console.ReadLine())
}
while (bandera == 1)
FIN
CONSOLA








PRACTICA 13

PSEUDOCODIGO
double ancho, largo;
public rectangulo()
{
ancho = 0;largo = 0;
}
public void Asignardatos(float w,float h)
{
ancho=w;
largo=h;
}
public void Asignarancho(float w)
{
ancho=w;
}
public void Asignarlargo(float h)
{
largo=h;
}
public double Obtenerancho()
{
return ancho;
}
public double Obtenerlargo()
{
return largo;
}
public double Area()
{
return largo*ancho;
}
public double Perimetro()
{
return 2*(largo+ancho);
}
FIN
CONSOLA


VISUAL
















PROYECTO IV UNIDAD

CONTADOR DE VOCALES






PRACTICA 12-2

Pseudocodgo
int n1, n2
int suma()
{
return n1 + n2
}
int multiplica()
{
return n1*n2
}
button_click
{
Read n1leer n2
int r1 = suma()
int r2 = multiplicacio()
leer ("Suma", r1)
Read ("Multiplicacion", r2)
}
FIN
VISUAL



PRACTICA 12-1

Pseudocodigo
string mensaje
Print ("Introduce un mensaje para navidad")
Print (mensaje)
Print (mensaje)
Print (mensaje)
Print (mensaje)
Print (mensaje)
Print (mensaje)
Print (mensaje)
Print (mensaje)
Print (mensaje)
Fin
CONSOLA



VISUAL