TheBulgarianWolf

Magic number

Mar 14th, 2020
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.89 KB | None | 0 0
  1. import java.util.Scanner;
  2. public class Main
  3. {
  4.     public static void main(String[] args) {
  5.         Scanner sc = new Scanner(System.in);
  6.         System.out.print("Enter the magic number: ");
  7.         int magic = Integer.parseInt(sc.nextLine());
  8.        
  9.         System.out.print("Here are all the possible multiplication options to get that number: ");
  10.         for(int d1 = 0;d1<=9;d1++){
  11.             for(int d2 = 0;d2<=9;d2++){
  12.                 for(int d3 = 0;d3<=9;d3++){
  13.                     for(int d4 = 0;d4<=9;d4++){
  14.                         for(int d5 = 0;d5<=9;d5++){
  15.                             for(int d6 = 0;d6<=9;d6++){
  16.                                 if(d1*d2*d3*d4*d5*d6 == magic){
  17.                                     System.out.print(String.format("%d%d%d%d%d%d",d1,d2,d3,d4,d5,d6));
  18.                                     System.out.println();
  19.                                 }
  20.                             }
  21.                         }
  22.                     }
  23.                 }
  24.             }
  25.         }
  26.        
  27.     }
  28. }
Add Comment
Please, Sign In to add comment