Dilyana86

Untitled

Apr 26th, 2017
824
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class magicNumbers260316 {
  4. public static void main(String[] args) {
  5. Scanner scan = new Scanner(System.in);
  6. int magic = Integer.parseInt(scan.nextLine());
  7.  
  8. for (int d1 = 0; d1 <= 9; d1++) {
  9. for (int d2 = 0; d2 <= 9; d2++) {
  10. for (int d3 = 0; d3 <= 9; d3++) {
  11. for (int d4 = 0; d4 <= 9; d4++) {
  12. for (int d5 = 0; d5 <= 9; d5++) {
  13. for (int d6 = 0; d6 <= 9; d6++) {
  14. if (d1 * d2 * d3 * d4 * d5 * d6 == magic) {
  15. System.out.printf("%d%d%d%d%d%d ",d1,d2,d3,d4,d5,d6);
  16. }
  17. }
  18. }
  19. }
  20. }
  21. }
  22. }
  23. }
  24. }
Add Comment
Please, Sign In to add comment