Advertisement
Spocoman

12. The song of the wheels

Aug 30th, 2024
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.93 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class TheSongOfTheWheels {
  4.     public static void main(String[] args) {
  5.         Scanner scanner = new Scanner(System.in);
  6.         int n = Integer.parseInt(scanner.nextLine()),
  7.                 counter = 0;
  8.  
  9.         String print = "No!";
  10.  
  11.         for (int a = 1; a <= 9; a++) {
  12.             for (int b = 1; b <= 9; b++) {
  13.                 for (int c = 1; c <= 9; c++) {
  14.                     for (int d = 1; d <= 9; d++) {
  15.                         if (a * b + c * d == n && a < b && c > d) {
  16.                             System.out.printf("%d%d%d%d ", a, b, c, d);
  17.                             counter++;
  18.                             if (counter == 4) {
  19.                                 print = "Password: " + a + b + c + d;
  20.                             }
  21.                         }
  22.                     }
  23.                 }
  24.             }
  25.         }
  26.         System.out.printf("\n%s", print.trim());
  27.     }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement