Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- /**
- * Created by Tatyana64 on 9.3.2017 г..
- */
- public class magicNumbers260316 {
- public static void main(String[] args) {
- Scanner scan = new Scanner(System.in);
- int magic = Integer.parseInt(scan.nextLine());
- for (int d1 = 0; d1 <= 9; d1++) {
- for (int d2 = 0; d2 <= 9; d2++) {
- for (int d3 = 0; d3 <= 9; d3++) {
- for (int d4 = 0; d4 <= 9; d4++) {
- for (int d5 = 0; d5 <= 9; d5++) {
- for (int d6 = 0; d6 <= 9; d6++) {
- if (d1 * d2 * d3 * d4 * d5 * d6 == magic) {
- System.out.printf("%d%d%d%d%d%d ",d1,d2,d3,d4,d5,d6);
- }
- }
- }
- }
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement