ALGORITMOS

3
Determinar si un estudiante aprueba o reprueba una asignatita sabiendo que su nota final es el promedio de cuatro notas, todas las notas son sobre 100. Visualizar el nombre de la asignatura y con cuanro aprueba o reprueba. 1. INICIO. 2. DECLARACION. NOT1, NOT2, NOT3, NOT4, PROM, NOT_TOT NUMERICO. ASIG ALFABETICO 3. ASIGNACION. Imprimir (“Ingrese la nota 1”) Leer Not1. Imprimir (“Ingrese la nota 2”) Leer Not2. Imprimir (“Ingrese la nota 3”) Leer Not3. Imprimir (“Ingrese la nota 4”) Leer Not4. 4. PROCESO. PROM (NOT1+NOT2+NOT3+NOT4)/4 SI (PROM>=70)

description

Iniciacion programacion algoritmos

Transcript of ALGORITMOS

Page 1: ALGORITMOS

Determinar si un estudiante aprueba o reprueba una asignatita sabiendo que su nota final es el promedio de cuatro notas, todas las notas son sobre 100. Visualizar el nombre de la asignatura y con cuanro aprueba o reprueba.

1. INICIO.2. DECLARACION.

NOT1, NOT2, NOT3, NOT4, PROM, NOT_TOT NUMERICO. ASIG ALFABETICO

3. ASIGNACION.Imprimir (“Ingrese la nota 1”)Leer Not1.

Imprimir (“Ingrese la nota 2”)Leer Not2.

Imprimir (“Ingrese la nota 3”)Leer Not3.

Imprimir (“Ingrese la nota 4”)Leer Not4.

4. PROCESO.

PROM (NOT1+NOT2+NOT3+NOT4)/4SI (PROM>=70)

Page 2: ALGORITMOS

Determinar el total a cancelar por la compra de cuatro artículos si se sabe que la tienda ofrece un descuento del 5% sobre el total de la compra. Visualizar el total a cancelar, el total de la compra y el descuento.

Page 3: ALGORITMOS

Calcular el decuento que se adquiere por la cimpra de 3 articulos si se sabe que la tienda ofrece el 5% de descuenbto si el total de la compra supera los 500 dolares y el 3% en cualquier otro caso.