0% found this document useful (0 votes)
24 views

Algorithms: Emilio Ortega Manriquez

This document presents pseudocode for an algorithm to determine if a student has learned enough from a course. The algorithm first checks if the student's learning is above a threshold. If not, it repeats the course in a loop until their learning passes the threshold. The document provides introductory information and pseudocode for one algorithm, with a brief conclusion.

Uploaded by

Emilio
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
24 views

Algorithms: Emilio Ortega Manriquez

This document presents pseudocode for an algorithm to determine if a student has learned enough from a course. The algorithm first checks if the student's learning is above a threshold. If not, it repeats the course in a loop until their learning passes the threshold. The document provides introductory information and pseudocode for one algorithm, with a brief conclusion.

Uploaded by

Emilio
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

algorithms

Emilio Ortega Manriquez

1 Introduction
Creating nice pseudocode algorithms.

1.1 My algorithm
if learned ≥ sortof then
okay ← true
else
while !okay do
repeat course
okay = learned ≥ sortof
end while
end if

1.2

2 Conclusión

You might also like