Skip to content

Latest commit

 

History

History
18 lines (9 loc) · 714 Bytes

File metadata and controls

18 lines (9 loc) · 714 Bytes

Example: All Latin Letters

Write a program that prints the letters of the English Alphabet: a, b, c, …, z.

Video: Latin Letters

Watch the following video lesson to learn how to print the Latin letters using a for-loop: https://youtu.be/EKNPt69wsFM.

Hints and Guidelines

It is good to know that the for** loops** don't only work with numbers. We can solve the task by running a for** loop** that passes sequentially through all letters in the English alphabet:

Testing in the Judge System

Test your solution here: https://judge.softuni.org/Contests/Practice/Index/510#2.