Advertisement
Spocoman

Ticket Combination

Sep 10th, 2024
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.86 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Main {
  4.     public static void main(String[] args) {
  5.         Scanner scanner = new Scanner(System.in);
  6.         int n = Integer.parseInt(scanner.nextLine());
  7.  
  8.         for (char a = 'B'; a <= 'L'; a += 2) {
  9.             for (char b = 'f'; b >= 'a'; b--) {
  10.                 for (char c = 'A'; c <= 'C'; c++) {
  11.                     for (int d = 1; d <= 10; d++) {
  12.                         for (int e = 10; e > 0; e--) {
  13.                             if (--n == 0) {
  14.                                 System.out.printf("Ticket combination: %c%c%c%d%d\n", a, b, c, d, e);
  15.                                 System.out.println("Prize: " + (a + b + c + d + e) + " lv.");
  16.                                 return;
  17.                             }
  18.                         }
  19.                     }
  20.                 }
  21.             }
  22.         }
  23.     }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement