Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class P09magicNumbers* {
- public static void main(String[] args) {
- Scanner scanner = new Scanner(System.in);
- long n = Long.parseLong(scanner.nextLine());
- for (int i = 1; i <= 9; i++) {
- for (int j = 1; j <= 9; j++) {
- for (int k = 1; k <= 9; k++) {
- for (int l = 1; l <= 9; l++) {
- for (int m = 1; m <= 9; m++) {
- for (int o = 1; o <= 9; o++) {
- long result = i * j * k * l * m * o;
- if (result == n) {
- System.out.printf("%d%d%d%d%d%d ", i, j, k, l, m, o);
- }
- }
- }
- }
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment