Advertisement
Spocoman

06. Triples of Latin Letters

Oct 17th, 2024
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.42 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. class Main {
  4.     public static void main(String[] args) {
  5.         Scanner scanner = new Scanner(System.in);
  6.         int n = Integer.parseInt(scanner.nextLine()) + 97;
  7.  
  8.         for (int a = 97; a < n; a++) {
  9.             for (int b = 97; b < n; b++) {
  10.                 for (int c = 97; c < n; c++) {
  11.                     System.out.printf("%c%c%c\n", a, b, c);
  12.                 }
  13.             }
  14.         }
  15.     }
  16. }
  17.  
  18. OR:
  19.  
  20. import java.util.Scanner;
  21.  
  22. class Main {
  23.     public static void main(String[] args) {
  24.         Scanner scanner = new Scanner(System.in);
  25.         int n = Integer.parseInt(scanner.nextLine()) + 97;
  26.  
  27.         for (int a = 'a'; a < n; a++) {
  28.             for (int b = 'a'; b < n; b++) {
  29.                 for (int c = 'a'; c < n; c++) {
  30.                     System.out.printf("%c%c%c\n", a, b, c);
  31.                 }
  32.             }
  33.         }
  34.     }
  35. }
  36.  
  37. OR:
  38.  
  39. import java.util.Scanner;
  40.  
  41. class Main {
  42.     public static void main(String[] args) {
  43.         Scanner scanner = new Scanner(System.in);
  44.         char n = (char)(Integer.parseInt(scanner.nextLine()) + 97);
  45.  
  46.         for (char a = 'a'; a < n; a++) {
  47.             for (char b = 'a'; b < n; b++) {
  48.                 for (char c = 'a'; c < n; c++) {
  49.                     System.out.printf("%c%c%c\n", a, b, c);
  50.                     //System.out.printf("%s%s%s\n", a, b, c);
  51.                 }
  52.             }
  53.         }
  54.     }
  55. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement