Skip to content

Tutorial — ejercicio-criptograma

Learn by programming: follow each step, write your own code, then apply it to the course assignment.

What you will build

Classes that encrypt/decrypt text per the professor’s guide.

  1. 1

    Read the official assignment

    Open the exercise page in Trabajos and the assigned exercises PDF. Identify required classes.

    Tip: Assignment: /en/trabajos/ejercicio-01-criptograma/

  2. 2

    Design the classes

    Separate responsibilities: one class for the alphabet, another to transform text, etc.
  3. 3

    Implement encrypt and decrypt

    Write clear public methods. Test with short strings before the full case.
  4. 4

    Test and document

    Include screenshots or console output and follow the submission template.

Back to tutorial page