yovkovbpfps

For Loop LatinLetters

Apr 8th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. public class Latin {
  2. public static void main(String[] args) {
  3. for (char letter = 'a'; letter <= 'z'; letter++){
  4. System.out.println(letter);
  5. }
  6. }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment