Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create Jose- Tarea algoritmos #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions Jose- Tarea algoritmos
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
Algoritmo Promedio_ponderado

Escribir 'Ingrese la nota del primer parcial'
Leer PP
Escribir 'Ingrese la nota del segundo parcial'
Leer SP
Escribir 'Ingrese la nota de participación'
Leer NP
Escribir 'Ingrese la nota del examen final'
Leer EF
Nota<- PP*.25+SP*.25+NP*.2+EF*.3
Escribir 'De acuerdo a los valores ingresados su nota final es: ',Nota
Si Nota > 4.5 Entonces Escribir "Felicitaciones"
FinSi
Si Nota > 4 Entonces escribir "Buen trabajo"
FinSi
Si Nota > 3.5 Entonces escribir "Pasaste, la proxima será mejor"
FinSi
Si Nota> 3 Entonces escribir "Lo importante es pasar"
FinSi
Si Nota>= 2.9 Entonces escribir "Casi... Casi ... pero no :c"
Sino escribir "Siguelo intentando"
FinSi
FinAlgoritmo

Algoritmo Cilindro

Escribir 'Ingrese la altura del cilindro'
Leer Alt
Escribir 'Ingrese el radio del cilindro'
Leer Rad
Area <- 2*pi*Rad*Alt+2*3.14*Rad^2
Volumen <- pi*Rad*Alt
Escribir 'La area de la superficie total del cilindro es ',Area
Escribir 'El volumen del cilindro es ',Volumen

FinAlgoritmo