Sie sind auf Seite 1von 11

1.

-Proceso Hipotenusa_de_un_Tringulo_Rectangulo
Definir C1, C2,H Como Real;
Escribir "Ingrese Cateto 1";
Leer C1;
Escribir "Ingrese Cateto 2";
Leer C2;
H=RAIZ(C1^2+C2^2);
Escribir "La Hipotenusa es:" H;
FinProceso
2.-Proceso rea_volumen_de_un_cilindro
Definir R, H, A, V Como Real;
Escribir "Ingrese el Radio";
Leer R;
Escribir "Ingrese la Altura";
Leer H;
A=2*PI*R^2+2*PI*R*H;
V=PI*H*R^2;
Escribir "El rea del cilindro es:" A;
Escribir "El Volumen del Cilindro es:" V;
FinProceso
3.- Proceso rea_de_una_figura_A
Definir R, H, A Como Real;
Escribir "Ingrese el Radio";
Leer R;
Escribir "Ingrese la Altura";
Leer H;
A=(PI*R^2)/2+(2*R*H)/2;
Escribir "El rea de la Figura A es:" A;
FinProceso

4.- Proceso Ingreso_por_da


Definir L, C, I Como Real;
Escribir "Ingrese litros de leche producido por dia";
Leer L;
Escribir "Ingrese el costo por litro de leche";
Leer C;
I=(L/3.875)*C
Escribir "El ingreso por dia es:" I
FinProceso

5.- Proceso Distancia_entre_dos_puntos_en_el_plano_cartesiano


Definir x1, x2, y1, y2, D Como Real
Escribir "Ingrese x1";
Leer x1;
Escribir "Ingrese x2";
Leer x2;
Escribir "Ingrese y1";
Leer y1
Escribir "Ingrese y2";
Leer y2
D=RAIZ[(x1-x2)^2+(y1-y2)^2]
Escribir "La distancia es:" D
FinProceso

6.- Proceso Sueldo_semanal_de_un_trabajador


Definir P, S Como Real;
Escribir "Ingrese elm Pago por hora";
Leer P;
S=5*8*P
Escribir "El sueldo semanal es:" S
FinProceso

7.- Proceso Medida_de_tela_en_pulgadas


Definir M, P Como Real;
Escribir "Ingrese medida en metros";
Leer M;
P=M/0.0254
Escribir "La medida en pulgadas es:" P;
FinProceso

8.- Proceso Edad_de_una_persona


Definir A, E Como Entero;
Escribir "Ingrese ao de nacimiento";
Leer A;
E=2016-A+1
Escribir "La edad es:" E
FinProceso

9.- Proceso Costo_de_pintado_por_superficie


Definir M,C,T Como Real
Escribir 'Ingrese la superficie a pintar en metros cuadrados'
Leer M
Escribir 'Ingrese Costo por Metro Cuadrado'
Leer C
T<-M*C
Escribir 'El costo total por pintar la superficie es:',T
FinProceso

10.- Proceso Costo_de_boleto_por_viaje


Definir K, C, T Como Real;
Escribir "Ingrese distancaia en kilometros";
Leer K;
Escribir "Ingrese costo por kilometro";
Leer C
T=K*C
Escribir "El costyo del boleto por viaje es:" T
FinProceso

11.- Proceso Potencia_elctrica


Definir P, V, I Como Real;
Escribir "Ingrese la intensidad de corriente elctrica"
Leer I
V=4*I
P=V*I
Escribir "La Potencia Elctrica es:" P;
FinProceso

13.- Proceso Promedio


Definir n1, n2, n3, P como real;
Escribir "Ingrese nota 1";
Leer n1;
Escribir "Ingrese nota 2";
Leer n2;
Escribir "Ingrese nota 3";
leer n3;
P=(n1+n2)*0.25+n3*0.5
Escribir "El promedio es:" P;
FinProceso

Das könnte Ihnen auch gefallen